This commit is contained in:
frosty
2026-02-23 00:57:21 -05:00
commit b280ab6bcd
37 changed files with 2787 additions and 0 deletions

10
src/Utility/Unescape.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef UNESCAPE_H
#define UNESCAPE_H
#include <stddef.h>
char *unescape_search_url(const char *input);
char *url_decode_query(const char *src);
#endif