Merge pull request #180 from eefi/bug/tagger/include-guard

[fix] add #include guard to tagger.h
This commit is contained in:
Al Barrentine
2017-04-13 13:58:13 -04:00
committed by GitHub

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