Files
libpostal/src/features.h

18 lines
225 B
C

#ifndef FEATURES_H
#define FEATURES_H
#include <stdlib.h>
#include <stdarg.h>
#include "string_utils.h"
#define FEATURE_SEPARATOR_CHAR "|"
void feature_array_add(cstring_array *features, size_t count, ...);
#endif