bfile_heuristics.h

Thu, 20 Oct 2011 14:13:56 +0200

author
Mike Becker <universe@uap-core.de>
date
Thu, 20 Oct 2011 14:13:56 +0200
changeset 20
43725438ac50
child 21
91e0890464b0
permissions
-rw-r--r--

Changed author comments + added signatures for upcomming bfile heuristics

     1 /*
     2  * bfile_heuristics.h
     3  *
     4  *  Created on: 20.10.2011
     5  *      Author: Mike
     6  */
     8 #ifndef BFILE_HEURISTICS_H_
     9 #define BFILE_HEURISTICS_H_
    11 #include "stdinc.h"
    12 #include "settings.h"
    14 #ifdef _cplusplus
    15 extern "C" {
    16 #endif
    18 typedef struct {
    19    int level;
    20    int ccount[256];
    21 } bfile_heuristics;
    23 bfile_heuristics *new_bfile_heuristics(int level);
    24 bool bfile_check(bfile_heuristics *def, int next_char);
    26 #ifdef _cplusplus
    27 }
    28 #endif
    30 #endif /* BFILE_HEURISTICS_H_ */

mercurial