mirror of
https://github.com/python/cpython.git
synced 2025-11-02 03:01:58 +00:00
make soundex_hash static
This commit is contained in:
parent
8c1e150215
commit
3d86cc0dbc
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue