summaryrefslogtreecommitdiff
path: root/src/stropts/struct_strbuf.c
blob: 37e10700640172e9be4286955dae7185edf6c627 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <stropts.h>

struct strbuf {
	int maxlen;
	int len;
	char *buf;
};

/*
XOPEN(400)
*/