"Fossies" - the Fresh Open Source Software Archive

Member "geoipupdate-3.1.1/bin/functions.h" (12 Jan 2018, 250 Bytes) of package /linux/misc/geoipupdate-3.1.1.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file. For more information about "functions.h" see the Fossies "Dox" file reference documentation.

    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