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

#include "builder.h"

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