aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRaghuram Subramani <raghus2247@gmail.com>2025-08-01 19:59:54 +0530
committerRaghuram Subramani <raghus2247@gmail.com>2025-08-01 19:59:54 +0530
commiteec951a2f92d18260acef6d421ee059d0511673b (patch)
treeac4e27d96d245184b643adc0606e50a305f36a1e /include
parent62636d863fb6577b67d49c84992685d77a30655f (diff)
util: get_wrapped->unwrap
Diffstat (limited to 'include')
-rw-r--r--include/util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/util.h b/include/util.h
index 4310bdb..d3c26a1 100644
--- a/include/util.h
+++ b/include/util.h
@@ -27,6 +27,6 @@ char *ltrim(char *s);
char *rtrim(char *s);
char *trim(char *s);
ptr_wrapper_t *wrap_ptr(void *ptr);
-void *get_wrapped(ptr_wrapper_t *wrapper);
+void *unwrap(ptr_wrapper_t *wrapper);
#endif