10 lines
182 B
C
10 lines
182 B
C
#ifndef ENCODE_H
|
|
#define ENCODE_H
|
|
|
|
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
|