Files
libpostal/src/tagger.h
2017-04-13 13:02:03 -04:00

11 lines
263 B
C

#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);
#endif