1 #ifndef _GEOIPUPDATE_FUNCTIONS_H 2 #define _GEOIPUPDATE_FUNCTIONS_H 3 4 #include <stdbool.h> 5 #include <stddef.h> 6 7 size_t gu_strnlen(char const *const, size_t const); 8 bool is_valid_gzip_file(char const *const); 9 char *slurp_file(char const *const); 10 11 #endif