X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fcommon%2Freadwrite.h;h=b61230fb59487ba05f0feed3a05de66bb0ab0dcb;hb=1452d43c6d7c89219cda91362da53ac8e4acb887;hp=9c1358a693c10112648677b62d9bf7794b417a35;hpb=dd9d65ee727ac7e95801da0f8b5bae7009811802;p=plomrogue diff --git a/src/common/readwrite.h b/src/common/readwrite.h index 9c1358a..b61230f 100644 --- a/src/common/readwrite.h +++ b/src/common/readwrite.h @@ -22,7 +22,9 @@ extern void try_fputc(uint8_t c, FILE * file, char * f); /* Wrapper to calling fgetc() and fgets() from function "f". The return code is * returned unless ferror() indicates an error (i.e. to signify an end of file, - * fgetc() may return an EOF and fgets() a NULL. + * fgetc() may return an EOF and fgets() a NULL). try_fgetc() calls clearerr() + * on "file" before fgetc(), because some Unixes fgetc() remember old EOFs and + * only return those until explicitely cleared. */ extern int try_fgetc(FILE * file, char * f); extern char * try_fgets(char * line, int size, FILE * file, char * f); @@ -34,11 +36,8 @@ extern char * try_fgets(char * line, int size, FILE * file, char * f); extern void try_fclose_unlink_rename(FILE * file, char * p1, char * p2, char * f); -/* Return largest line length from "file" the largest line length (including - * newline chars) and write the number of newline chars in "file" to the memory - * pointed to by "n_lines_p" if it is not passed as NULL. - */ -extern uint32_t textfile_sizes(FILE * file, uint32_t * n_lines_p); +/* Return largest line length from "file" (including newline chars). */ +extern uint32_t textfile_width(FILE * file);