increase readability of encode.{c,h}

This commit is contained in:
Eric 2025-06-13 01:03:14 +02:00
parent 44187d5618
commit 7106066261
2 changed files with 51 additions and 50 deletions

View file

@ -2,9 +2,9 @@
#define ENCODE_H
int
encode(unsigned char *op, int olen, unsigned char *sp, int url);
encode(unsigned char *octbuf, int octbufsize, unsigned char *sxtbuf, int urlencoded);
int
decode(unsigned char *sp, int slen, unsigned char *op);
decode(unsigned char *sxtbuf, int sxtbufsize, unsigned char *octbuf);
#endif