summary refs log tree commit diff
path: root/utl/json2map/common.h
diff options
context:
space:
mode:
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);