X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;f=src%2Freadwrite.h;h=bcdf10eb20632caada30e8ee02fb35cd586ee8cf;hb=ec5c4edd169be8fe8c778cabdfc7ada665629ffd;hp=128e44a8a3e5534e40c7a98fa8feba800d53788f;hpb=0e6c855b67e0cd3def7196396f3d1f45ff85b692;p=plomrogue diff --git a/src/readwrite.h b/src/readwrite.h index 128e44a..bcdf10e 100644 --- a/src/readwrite.h +++ b/src/readwrite.h @@ -10,6 +10,34 @@ #include /* for FILE typedef */ #include /* for uint8_t, uint16_t, uint32_t */ +struct World; + + + +/* Wrappers to calling from function called "f" of fopen(), fclose() and fgets() + * and calling exit_err() with appropriate error messages. + */ +extern FILE * try_fopen(char * path, char * mode, struct World * w, char * f); +extern void try_fclose(FILE * file, struct World * w, char * f); +extern void try_fgets(char * line, int size, FILE * file, + struct World * w, char * f); + + + +/* Wrapper to successive call of fclose() from function called "f" on "file", + * then unlink() on file at "p2" if it exists, then rename() on "p1" to "p2". + * Used for handling atomic saving of files via temp files. + */ +extern void try_fclose_unlink_rename(FILE * file, char * p1, char * p2, + struct World * w, char * f); + + + +/* Wrapper: Call textfile_sizes() from function called "f" to get max line + * length of "file", exit via exit_err() with trouble_msg()-generated error + * message on failure. + */ +extern uint16_t get_linemax(FILE * file, struct World * w, char * f);