| _CP_sort | Index Level | _CP_space |
| Syntax | int _CP_soundex(CPSTR** result, CPSTR* string, int type) |
| Category | C Interface |
| Type | C Function |
| Description |
equivalent to the FlashBASIC statement: result = soundex(string, type).
This function returns -1 if an error occurs. The error code is contained in _CP_errno. |
| Options | |
| See Also | C Functions introduction |
| Example |
The following example prints "H000".
CPSTR * s = _CP_mkstr("hi"); _CP_soundex(&s,s,0); _CP_print(s); |
| Warnings | |
| Compatibility | AP 6.1 |
| _CP_sort | Index Level | _CP_space |