summaryrefslogtreecommitdiff
path: root/src/string.c
blob: 6e1ba40e678f78fd2aac8636bcf2569457e504cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include "config.h"

#include <stddef.h>

#include "string.h"


struct String {
	char *bytes;
	size_t length;
};