File: base64.h

package info (click to toggle)
dcd 0.99-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 296 kB
  • ctags: 627
  • sloc: ansic: 4,137; makefile: 91
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