9 lines
208 B
C
9 lines
208 B
C
#define NO_ERROR 0
|
|
|
|
//ERRORS
|
|
#define FILE_ERROR_OPEN 11
|
|
#define FILE_ERROR_STRCONTENT_TO_SMALL 12
|
|
#define FILE_ERROR_READ_MISMATCH 13
|
|
|
|
int getFile(char *fname, char **strContent,int cbSize,long *neededSize);
|