blob: dcb47ebdcc592075640e95fdb47dc7518fa534c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef __READFILE_H__
#define __READFILE_H__
/**
* Read file by filename, die on error
* @param name Path to file
* @return Contents of file with additional '\0' at the end
*/
char *readfile(const char *name);
#endif /* __READFILE_H__ */
|