blob: e1e49e7b3fe7c0a439ffad8ff894955fcbeb3641 (
plain)
1
2
3
4
5
6
7
8
9
|
#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);
size_t my_strlcpy(char *, const char *, size_t);
|