mirror of https://github.com/python/cpython
make soundex_hash static
This commit is contained in:
parent
8c1e150215
commit
3d86cc0dbc
|
@ -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 */
|
||||||
|
|
Loading…
Reference in New Issue