File: base64.h

package info (click to toggle)
anacron 2.3-46
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 548 kB
  • sloc: ansic: 3,690; sh: 153; makefile: 125
file content (10 lines) | stat: -rw-r--r-- 209 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
#ifndef _ANACRON_BASE64_H
#define _ANACRON_BASE64_H

int
b64_ntop(u_char const *src, size_t srclength, char *target, size_t targsize);

int
b64_pton (char const *src, u_char *target, size_t targsize);

#endif