b64/encode.h
2025-06-13 01:03:14 +02:00

10 lines
208 B
C

#ifndef ENCODE_H
#define ENCODE_H
int
encode(unsigned char *octbuf, int octbufsize, unsigned char *sxtbuf, int urlencoded);
int
decode(unsigned char *sxtbuf, int sxtbufsize, unsigned char *octbuf);
#endif