Proper url encoding for location field

This commit is contained in:
2020-12-18 22:20:32 +01:00
parent a5c1516468
commit 50f5438654
3 changed files with 33 additions and 4 deletions

View File

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