#ifndef UTIL_H #define UTIL_H /* * Reads the file denoted by path into a newly allocated output buffer. Returns * 0 for success, -1 for error. read_size is the size of output buffer (only to * be used in case of success). */ int read_file(char *path, char **output, size_t * read_size); #endif /* UTIL_H */