Removed codesetslib because we have now external repo.
[cake.git] / tools / genmodule / fileread.h
blob7bd6a845d0d7b85d324d6def17384401b208f3bc
1 /*
2 Copyright © 1995-2004, The AROS Development Team. All rights reserved.
4 Desc: The functions to read lines from a file
5 */
7 int fileopen(const char *); /* Open a file for read */
8 void fileclose(void); /* Close the opened file */
9 char *readline(void); /* Read a line from the opened file */
10 void exitfileerror(int code, const char *format, ...); /* Print exit code prefixed with filename and lineno */