X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;f=src%2Fmisc.c;h=4632a0bccadefd2e2b45b2010643f4241f05b164;hb=0e6c855b67e0cd3def7196396f3d1f45ff85b692;hp=4db3bc319c906de93004606ffbda90955e0cdbd5;hpb=244df9d304d76ebbfe62ecfd6201b134a0150025;p=plomrogue diff --git a/src/misc.c b/src/misc.c index 4db3bc3..4632a0b 100644 --- a/src/misc.c +++ b/src/misc.c @@ -5,7 +5,7 @@ #include /* for unlink(), acess() */ #include /* for calloc(), free() */ #include /* for strlen(), strcmp(), memcpy() */ -#include /* for uint16_t */ +#include /* for uint8_t, uint16_t */ #include "readwrite.h" /* for [read/write]_uint[8/16/32][_bigendian]() */ #include "map_objects.h" /* for struct Monster, write_map_objects(), */ #include "map_object_actions.h" /* for is_passable(), move_monster() */ @@ -17,40 +17,6 @@ -extern void textfile_sizes(FILE * file, uint16_t * linemax_p, - uint16_t * n_lines_p) -{ - uint16_t n_lines = 0; - int c = 0; - uint16_t linemax = 0; - uint16_t c_count = 0; - while (EOF != c) - { - c_count++; - c = getc(file); - if ('\n' == c) - { - if (c_count > linemax) - { - linemax = c_count + 1; - } - c_count = 0; - if (n_lines_p) - { - n_lines++; - } - } - } - fseek(file, 0, SEEK_SET); - * linemax_p = linemax; - if (n_lines_p) - { - * n_lines_p = n_lines; - } -} - - - extern void update_log(struct World * world, char * text) { static char * last_msg; /* TODO: valgrind is dissatisfied */