Files
libpostal/src/acronyms.h

15 lines
346 B
C

#ifndef ACRONYMS_H
#define ACRONYMS_H
#include <stdio.h>
#include <stdlib.h>
#include "address_dictionary.h"
#include "collections.h"
#include "tokens.h"
#include "token_types.h"
phrase_array *acronym_token_alignments(const char *s1, token_array *tokens1, const char *s2, token_array *tokens2, size_t num_languages, char **languages);
#endif