File: base64.h

package info (click to toggle)
dcd 0.99.2-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 324 kB
  • ctags: 636
  • sloc: ansic: 4,187; makefile: 100
file content (7 lines) | stat: -rw-r--r-- 154 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
#ifndef BASE64_H
#define BASE64_H

void bin_to_base64 (unsigned char *out, const unsigned char *in,
                    size_t len, size_t olen);

#endif