mirror of
https://github.com/python/cpython.git
synced 2024-11-25 19:03:49 +08:00
make soundex_hash static
This commit is contained in:
parent
8c1e150215
commit
3d86cc0dbc
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user