Commit 3d86cc0d authored by Guido van Rossum's avatar Guido van Rossum

make soundex_hash static

parent 8c1e1502
...@@ -21,7 +21,7 @@ ...@@ -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 */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment