summaryrefslogtreecommitdiffstats
path: root/util.h
blob: eb74034106a817d23646be332f3b41c7502ae2dc (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>
#include <stdlib.h>

char *xfgets(char *, size_t, FILE *);
FILE *xfopen(const char *, const char *);
int xfputs(const char *, FILE *);
void *xmalloc(size_t);
void *xrealloc(void *, size_t);
int mkparentdirs(const char *);
size_t my_strlcpy(char *, const char *, size_t);