gout

A static git page generator
git clone https://git.bracken.jp/gout.git
Log | Files | Refs | README | LICENSE

gout_index.h (410B)


      1 #ifndef GOUT_GOUT_INDEX_H_
      2 #define GOUT_GOUT_INDEX_H_
      3 
      4 typedef struct GoutIndexOptions GoutIndexOptions;
      5 GoutIndexOptions* gout_index_options_create(int argc, const char* argv[]);
      6 void gout_index_options_free(GoutIndexOptions* options);
      7 
      8 void gout_index_init(const GoutIndexOptions* options);
      9 void gout_index_run(const GoutIndexOptions* options);
     10 void gout_index_shutdown(void);
     11 
     12 #endif  // GOUT_GOUT_INDEX_H_