Project

General

Profile

Statistics
| Branch: | Revision:

root / mainbox / util.h @ 38df0012

History | View | Annotate | Download (198 Bytes)

1
#ifndef UTIL_H
2
#define UTIL_H
3

    
4
/* Reads in an entire file. Returns NULL on error, or a malloc'd pointer to a
5
 * string which should later be freed. */
6
char *read_file(const char *filename);
7

    
8
#endif