home *** CD-ROM | disk | FTP | other *** search
- #ifndef __SOUNDEX_H__
- #define __SOUNDEX_H__
-
- #if defined(WIN32) || defined(__GNUC__)
- void Soundex (char *Name, char *Key);
- void Phonix (char *Name, char *Key);
- void SoundexCode (char *Name, char *Key);
- void PhonixCode (char *Name, char *Key);
- #else
- extern void Soundex ();
- extern void Phonix ();
- #endif
-
- #endif __SOUNDEX_H__
-