diff options
author | Preston Pan <ret2pop@gmail.com> | 2024-12-27 20:05:06 -0800 |
---|---|---|
committer | Preston Pan <ret2pop@gmail.com> | 2024-12-27 20:05:06 -0800 |
commit | 63f11aaec8d21844a07fd27003a992c102a3a297 (patch) | |
tree | 6240a2c8561642d0c1d0b95148d6c868c7855a4a /include | |
parent | fd14f6fbf8206589d2a0ad8f0793845cb8faf1d7 (diff) |
make directory structure for client
Diffstat (limited to 'include')
-rw-r--r-- | include/array.h | 1 | ||||
-rw-r--r-- | include/better_string.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/array.h b/include/array.h index 0b53f95..948dad2 100644 --- a/include/array.h +++ b/include/array.h @@ -19,4 +19,5 @@ void *array_pop(array_t *a); void *array_del(array_t *a, unsigned int ind); void array_free(void *a, void (*freefunc)(void *)); + #endif diff --git a/include/better_string.h b/include/better_string.h index 09fd928..a5f9954 100644 --- a/include/better_string.h +++ b/include/better_string.h @@ -1,5 +1,6 @@ #ifndef STRING_H #define STRING_H + #include <stdlib.h> #define DEFAULT_STR_SIZE 10 typedef struct { |