diff -r 77c158821738 -r ac35daceb24c src/c2html.h --- a/src/c2html.h Tue Aug 23 12:06:46 2016 +0200 +++ b/src/c2html.h Tue Aug 23 13:49:38 2016 +0200 @@ -46,31 +46,16 @@ #define VERSION_MAJOR 2 #define VERSION_MINOR 0 -#define VERSION_DEVELOP 1 // set this to zero for release version +#define VERSION_DEVELOP 1 /* set this to zero for release version */ - -#define INPUTBUF_SIZE 2048 - -#define C2HTML_C 0 -#define C2HTML_JAVA 1 - typedef struct { char* outfilename; char* headerfile; char* footerfile; char* infilename; - int highlight; int showlinenumbers; -} settings_t; +} Settings; -typedef struct { - size_t count; - size_t capacity; - size_t maxlinewidth; - char** lines; -} inputfile_t; - -typedef size_t(*fmt_write_func)(const void*, size_t, size_t, void*); #ifdef __cplusplus }