Parent Directory
|
Revision Log
|
Revision Graph
Importing web-site building process.
1 | #ifndef DOUBLE_METAPHONE__H |
2 | #define DOUBLE_METAPHONE__H |
3 | |
4 | |
5 | typedef struct |
6 | { |
7 | char *str; |
8 | int length; |
9 | int bufsize; |
10 | int free_string_on_destroy; |
11 | } |
12 | metastring; |
13 | |
14 | |
15 | void |
16 | DoubleMetaphone(char *str, |
17 | char **codes); |
18 | |
19 | |
20 | #endif /* DOUBLE_METAPHONE__H */ |
ViewVC Help | |
Powered by ViewVC 1.1.22 |