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
11
12
13
14
15
16
17
#ifndef DOUBLE_METAPHONE__H
#define DOUBLE_METAPHONE__H

#include <stdio.h>
#include <stdlib.h>

typedef struct double_metaphone_codes {
    char *primary;
    char *secondary;
} double_metaphone_codes_t;

double_metaphone_codes_t *double_metaphone(char *input);

void double_metaphone_codes_destroy(double_metaphone_codes_t *codes);

#endif