aboutsummaryrefslogtreecommitdiff
path: root/vendor/librune/lib/builder/u8strfree.c
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/librune/lib/builder/u8strfree.c')
-rw-r--r--vendor/librune/lib/builder/u8strfree.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/vendor/librune/lib/builder/u8strfree.c b/vendor/librune/lib/builder/u8strfree.c
new file mode 100644
index 0000000..f425691
--- /dev/null
+++ b/vendor/librune/lib/builder/u8strfree.c
@@ -0,0 +1,9 @@
+#include <stdlib.h>
+
+#include "builder.h"
+
+void
+u8strfree(struct u8buf b)
+{
+ free(b.p);
+}