From 764dea6ddb8fb8f164858426d755afc33b3a2f1d Mon Sep 17 00:00:00 2001 From: ame Date: Mon, 26 Feb 2024 12:04:08 -0600 Subject: content-disposition --- src/util.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/util.h') diff --git a/src/util.h b/src/util.h index 9a5b295..864108d 100644 --- a/src/util.h +++ b/src/util.h @@ -1,3 +1,9 @@ +#ifndef __UTIL_H +#define __UTIL_H + +#include "types/str.h" +#include "types/parray.h" + #define color_black "\e[30m" #define color_red "\e[31m" #define color_green "\e[32m" @@ -18,5 +24,9 @@ #define i_swap(A,B) double temp = A; A = B; B = temp; +int gen_parse(char*,int, parray_t**); void p_fatal(const char*); void p_error(const char*); +char* strnstr(const char*, const char*, size_t); + +#endif //__UTIL_H \ No newline at end of file -- cgit v1.2.3