diff options
author | Cameron Paul <cpaul37@gmail.com> | 2025-03-23 13:55:22 -0500 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2025-05-01 00:56:42 +0200 |
commit | fd401b642694684c517e09d99c0c35ea1a08342c (patch) | |
tree | a2141f7abf9a0deae3f256bfecdba7045fd59254 /src/misc.h | |
parent | 19559f536b1e6f4abbfad8e9f29844eaf6544322 (diff) |
Support for Content-Disposition filename
Diffstat (limited to 'src/misc.h')
-rw-r--r-- | src/misc.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -17,6 +17,7 @@ int a_Misc_content_type_check(const char *EntryType, const char *DetectedType); void a_Misc_parse_content_type(const char *str, char **major, char **minor, char **charset); int a_Misc_content_type_cmp(const char* ct1, const char *ct2); +void a_Misc_parse_content_disposition(const char *disposition, char **type, char **filename); int a_Misc_parse_geometry(char *geom, int *x, int *y, int *w, int *h); int a_Misc_parse_search_url(char *source, char **label, char **urlstr); char *a_Misc_encode_base64(const char *in); |