summary refs log tree commit diff
path: root/utl/json2map/common.h
diff options
context:
space:
mode:
authorzlago2024-10-02 20:39:39 +0200
committerzlago2024-10-02 20:39:39 +0200
commitce13cd4be59c0415877571d92aaea3fd0d5a7e49 (patch)
tree6e078cf505d2b1a0362ec6cbd28f30ba814e2a90 /utl/json2map/common.h
parent89f441dd4b07a507aedd1a61791e30b2ce337a34 (diff)
entities
Diffstat (limited to 'utl/json2map/common.h')
-rw-r--r--utl/json2map/common.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/utl/json2map/common.h b/utl/json2map/common.h
index 73e3240..e5a7590 100644
--- a/utl/json2map/common.h
+++ b/utl/json2map/common.h
@@ -5,4 +5,8 @@ struct blob {
 	size_t size;
 };
 
+struct blob blob_new(void);
+void blob_append(struct blob *const blob, void const *const data, size_t const size);
+void blob_free(struct blob *const blob);
+
 struct blob load_file(char const *const name);