This commit is contained in:
Al
2017-04-13 16:02:06 -04:00
2 changed files with 7 additions and 2 deletions

View File

@@ -16,7 +16,7 @@
#ifdef HAVE_CBLAS
#include <cblas.h>
#else
#warning "No CLBAS"
#warning "No CBLAS"
#endif
typedef enum {

View File

@@ -1,5 +1,10 @@
#ifndef TAGGER_H
#define TAGGER_H
#include "string_utils.h"
#include "tokens.h"
// Arguments: tagger, context, tokenized str, index
typedef bool (*tagger_feature_function)(void *, void *, tokenized_string_t *, uint32_t);
typedef bool (*tagger_feature_function)(void *, void *, tokenized_string_t *, uint32_t);
#endif