textfile.h
void fiftyoneDegreesTextFileIterate(const char *fileName, char *buffer, int length, void *state, void(*callback)(const char *, void *))
Iterates over all the lines in a text file calling the callback method with each line.
void fiftyoneDegreesTextFileIterateWithLimit(const char *fileName, char *buffer, int length, int limit, void *state, void(*callback)(const char *, void *))
Iterates over all the lines in a text file up to the given limit number of line to read,...