src/c2html.h

changeset 39
ac35daceb24c
parent 37
1a67185e5496
child 49
f86f0b054464
     1.1 --- a/src/c2html.h	Tue Aug 23 12:06:46 2016 +0200
     1.2 +++ b/src/c2html.h	Tue Aug 23 13:49:38 2016 +0200
     1.3 @@ -46,31 +46,16 @@
     1.4      
     1.5  #define VERSION_MAJOR   2
     1.6  #define VERSION_MINOR   0
     1.7 -#define VERSION_DEVELOP 1 // set this to zero for release version
     1.8 +#define VERSION_DEVELOP 1 /* set this to zero for release version */
     1.9  
    1.10 -
    1.11 -#define INPUTBUF_SIZE 2048
    1.12 -
    1.13 -#define C2HTML_C    0
    1.14 -#define C2HTML_JAVA 1
    1.15 -    
    1.16  typedef struct {
    1.17      char* outfilename;
    1.18      char* headerfile;
    1.19      char* footerfile;
    1.20      char* infilename;
    1.21 -    int highlight;
    1.22      int showlinenumbers;
    1.23 -} settings_t;
    1.24 +} Settings;
    1.25  
    1.26 -typedef struct {
    1.27 -    size_t count;
    1.28 -    size_t capacity;
    1.29 -    size_t maxlinewidth;
    1.30 -    char** lines;
    1.31 -} inputfile_t;
    1.32 -
    1.33 -typedef size_t(*fmt_write_func)(const void*, size_t, size_t, void*);
    1.34  
    1.35  #ifdef	__cplusplus
    1.36  }

mercurial