diff options
Diffstat (limited to 'lib/bob/u8strfree.c')
-rw-r--r-- | lib/bob/u8strfree.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/bob/u8strfree.c b/lib/bob/u8strfree.c new file mode 100644 index 0000000..7e25ca8 --- /dev/null +++ b/lib/bob/u8strfree.c @@ -0,0 +1,9 @@ +#include <stdlib.h> + +#include "bob.h" + +void +u8strfree(struct u8str b) +{ + free(b.p); +} |