]> granicus.if.org Git - python/commitdiff
make soundex_hash static
authorGuido van Rossum <guido@python.org>
Fri, 24 May 1996 20:50:57 +0000 (20:50 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 24 May 1996 20:50:57 +0000 (20:50 +0000)
Modules/soundex.c

index cfa93399528aa8df3274b32755066858d5152e53..c1cbf70d71474b829fce9db6e906abf084059d15 100644 (file)
@@ -21,7 +21,7 @@
 static char soundex_module__doc__[] =
 "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 *rptr = result;        /* pointer into result */