stamen

Stamen - static menu generator
git clone git://git.dimitrijedobrota.com/stamen.git
Log | Files | Refs | README | LICENSE

stamenc.h (400B)


      1 #ifndef CSTAMEN_H
      2 #define CSTAMEN_H
      3 
      4 #include "shared.h"
      5 
      6 #ifdef __cplusplus
      7 #define EXTERNC extern "C"
      8 #else
      9 #define EXTERNC extern
     10 #endif
     11 
     12 EXTERNC void stamen_read(const char *file);
     13 EXTERNC void stamen_print(const char *entry);
     14 EXTERNC void stamen_insert(const char *code, stamen_callback_f callback);
     15 EXTERNC int stamen_builtin_display(const char *title, const item_t items[], int size);
     16 
     17 #endif