-
Notifications
You must be signed in to change notification settings - Fork 47
/
util.h
44 lines (35 loc) · 1.04 KB
/
util.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
struct buffer {
char *data;
size_t len, cap;
};
struct string {
size_t n;
char s[];
};
/* an unevaluated string */
struct evalstring {
char *var;
struct string *str;
struct evalstring *next;
};
#define LEN(a) (sizeof(a) / sizeof((a)[0]))
void warn(const char *, ...);
void fatal(const char *, ...);
void *xmalloc(size_t);
void *xreallocarray(void *, size_t, size_t);
char *xmemdup(const char *, size_t);
int xasprintf(char **, const char *, ...);
/* append a byte to a buffer */
void bufadd(struct buffer *buf, char c);
/* allocates a new string with length n. n + 1 bytes are allocated for
* s, but not initialized. */
struct string *mkstr(size_t n);
/* delete an unevaluated string */
void delevalstr(void *);
/* canonicalizes the given path by removing duplicate slashes, and
* folding '/.' and 'foo/..' */
void canonpath(struct string *);
/* make a directory (or parent directory of a file) recursively */
int makedirs(struct string *, _Bool);
/* write a new file with the given name and contents */
int writefile(const char *, struct string *);