aboutsummaryrefslogtreecommitdiff
path: root/lib/bob/u8strfree.c
blob: 7e25ca80e130722327f6370fe99c69c4978ec3e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <stdlib.h>

#include "bob.h"

void
u8strfree(struct u8str b)
{
	free(b.p);
}