diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-07-26 18:29:29 +0530 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-07-26 18:29:29 +0530 |
commit | 0fab8d3176e6adee1bb2e44e0386d3295a99261b (patch) | |
tree | 6f5b3bc8f94549719a0cc53d1f22a33f36b2de77 /include/util.h | |
parent | 9376c06ded47c4b77b94cb4d1e628537d9d69fce (diff) |
util: move ptr_wrapper_t to util
Diffstat (limited to 'include/util.h')
-rw-r--r-- | include/util.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/util.h b/include/util.h index ff81cbb..ebfe862 100644 --- a/include/util.h +++ b/include/util.h @@ -1,6 +1,10 @@ #ifndef __UTIL_H #define __UTIL_H +typedef struct { + void *ptr; +} ptr_wrapper_t; + char *ltrim(char *s); char *rtrim(char *s); char *trim(char *s); |