home · contact · privacy
Fix comment text.
[plomrogue] / src / common / readwrite.h
index 9c1358a693c10112648677b62d9bf7794b417a35..d616a193a31f95f9982ea7242f97e041ee4b9d50 100644 (file)
@@ -34,11 +34,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);