#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