generarxml/src/main.h

29 lines
437 B
C
Raw Normal View History

2016-10-20 20:45:07 -03:00
#define MEANING 30 + 12
2016-10-17 11:31:42 -03:00
2016-10-13 17:19:59 -03:00
struct configuration {
2016-10-13 19:55:33 -03:00
char *file;
char *bible;
char *book;
char *chapter;
char *chapter_numbers;
2016-10-13 17:19:59 -03:00
} typedef CONFIG;
2016-10-20 20:45:07 -03:00
struct chapterdata {
2016-10-20 23:08:33 -03:00
int chapter;
2016-10-20 20:45:07 -03:00
int current;
int verses;
char **verse;
} typedef CHAPTER;
struct bookdata {
int current;
int chapters;
CHAPTER **chapter;
} typedef BOOK;
2016-10-13 17:19:59 -03:00
CONFIG *config;
2016-10-20 20:45:07 -03:00
BOOK *book;
2016-10-13 17:19:59 -03:00
void cleanup();
2016-10-13 15:08:01 -03:00
void printusage(int error);