10 lines
208 B
C
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
|