make soundex_hash static

This commit is contained in:
Guido van Rossum 1996-05-24 20:50:57 +00:00
parent 8c1e150215
commit 3d86cc0dbc
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@
static char soundex_module__doc__[] = static char soundex_module__doc__[] =
"Perform Soundex comparisons on strings, allowing non-literal matching."; "Perform Soundex comparisons on strings, allowing non-literal matching.";
void soundex_hash(char *str, char *result) static void soundex_hash(char *str, char *result)
{ {
char *sptr = str; /* pointer into str */ char *sptr = str; /* pointer into str */
char *rptr = result; /* pointer into result */ char *rptr = result; /* pointer into result */