]> git.draconx.ca Git - liblbx.git/blob - src/lbx.h
Initial commit
[liblbx.git] / src / lbx.h
1 #ifndef LBX_H_
2 #define LBX_H_
3
4 typedef struct lbx_state LBX;
5
6 LBX *lbx_fopen(FILE *);
7 LBX *lbx_open(const char *);
8 void lbx_close(LBX *);
9
10 #endif