1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#ifndef GAME_DATA__H #define GAME_DATA__H #include <stdbool.h> #ifdef __cplusplus extern "C" { #endif bool get_game_data(const char *input_fname, const char *output_fname, bool from_update); #ifdef __cplusplus } #endif #endif