[utils] Adding read/write for 64-bit ints to file_utils

This commit is contained in:
Al
2015-05-13 17:51:03 -04:00
parent 6898f8ecd9
commit 2d49369e78
2 changed files with 33 additions and 0 deletions

View File

@@ -34,6 +34,9 @@ char *file_getline(FILE * f);
bool is_relative_path(struct dirent *ent);
bool file_read_int64(FILE *file, int64_t *value);
bool file_write_int64(FILE *file, int64_t value);
bool file_read_int32(FILE *file, int32_t *value);
bool file_write_int32(FILE *file, int32_t value);