bfile_heuristics.c

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

/*
 * bfile_heuristics.c
 *
 *  Created on: 20.10.2011
 *      Author: Mike
 */


#include "bfile_heuristics.h"

bfile_heuristics *new_bfile_heuristics(int level) {
   bfile_heuristics *ret = malloc(sizeof(bfile_heuristics));
   ret->level = level;
   memset(ret->ccount, 0, sizeof(int)*256);
   return ret;
}

bool bfile_check(bfile_heuristics *def, int next_char) {
   bool ret = false;
   
   return ret;
}

mercurial