libpostal-sys 0.1.1

Low-level wrappers for libpostal address normalization (with locks to support thread-safe initialization)
Documentation
1
2
3
4
5
6
7
8
9
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);

#endif