Added url_encode and url_decode

This commit is contained in:
2020-12-13 16:05:55 +01:00
parent 7c5a57b3d8
commit 2bcfa97e1b
2 changed files with 55 additions and 0 deletions

View File

@ -21,4 +21,8 @@ char *log_prefix;
char *format_duration(unsigned long micros, char *buf);
int url_encode(const char *str, char *enc, ssize_t *size);
int url_decode(const char *str, char *dec, ssize_t *size);
#endif //NECRONDA_SERVER_UTILS_H