|
1 | 1 | /*
|
2 | 2 | * This is a port of the Double Metaphone algorithm for use in PostgreSQL.
|
3 | 3 | *
|
4 |
| - * $PostgreSQL: pgsql/contrib/fuzzystrmatch/dmetaphone.c,v 1.8 2006/07/14 05:28:27 tgl Exp $ |
| 4 | + * $PostgreSQL: pgsql/contrib/fuzzystrmatch/dmetaphone.c,v 1.9 2006/07/16 02:44:00 tgl Exp $ |
5 | 5 | *
|
6 | 6 | * Double Metaphone computes 2 "sounds like" strings - a primary and an
|
7 | 7 | * alternate. In most cases they are the same, but for foreign names
|
|
49 | 49 | */
|
50 | 50 |
|
51 | 51 |
|
52 |
| -/* |
53 |
| - * $Revision: 1.8 $ |
54 |
| - * $Id: dmetaphone.c,v 1.8 2006/07/14 05:28:27 tgl Exp $ |
55 |
| - */ |
56 |
| - |
57 |
| - |
58 | 52 | /***************************** COPYRIGHT NOTICES ***********************
|
59 | 53 |
|
60 | 54 | Most of this code is directly from the Text::DoubleMetaphone perl module
|
|