b64/encode.h
2025-05-26 23:59:47 +02:00

10 lines
192 B
C

#ifndef HEADER_ENCODE
#define HEADER_ENCODE
int
encode(unsigned char *op, int olen, unsigned char *sp, int url);
int
decode(unsigned char *sp, int slen, unsigned char *op, int url);
#endif