|
6 | 6 | * Portions Copyright (c) 1994, Regents of the University of California
|
7 | 7 | *
|
8 | 8 | * IDENTIFICATION
|
9 |
| - * $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/cyrillic_and_mic/cyrillic_and_mic.c,v 1.4 2002/09/13 06:41:17 ishii Exp $ |
| 9 | + * $Header: /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/cyrillic_and_mic/cyrillic_and_mic.c,v 1.5 2002/10/26 15:00:59 tgl Exp $ |
10 | 10 | *
|
11 | 11 | *-------------------------------------------------------------------------
|
12 | 12 | */
|
|
17 | 17 |
|
18 | 18 | #define ENCODING_GROWTH_RATE 4
|
19 | 19 |
|
20 |
| -PG_FUNCTION_INFO_V1(koi8r_to_mic) |
21 |
| -PG_FUNCTION_INFO_V1(mic_to_koi8r) |
22 |
| -PG_FUNCTION_INFO_V1(iso_to_mic) |
23 |
| -PG_FUNCTION_INFO_V1(mic_to_iso) |
24 |
| -PG_FUNCTION_INFO_V1(win1251_to_mic) |
25 |
| -PG_FUNCTION_INFO_V1(mic_to_win1251) |
26 |
| -PG_FUNCTION_INFO_V1(alt_to_mic) |
27 |
| -PG_FUNCTION_INFO_V1(mic_to_alt) |
28 |
| -PG_FUNCTION_INFO_V1(koi8r_to_win1251) |
29 |
| -PG_FUNCTION_INFO_V1(win1251_to_koi8r) |
30 |
| -PG_FUNCTION_INFO_V1(koi8r_to_alt) |
31 |
| -PG_FUNCTION_INFO_V1(alt_to_koi8r) |
32 |
| -PG_FUNCTION_INFO_V1(alt_to_win1251) |
33 |
| -PG_FUNCTION_INFO_V1(win1251_to_alt) |
34 |
| -PG_FUNCTION_INFO_V1(iso_to_koi8r) |
35 |
| -PG_FUNCTION_INFO_V1(koi8r_to_iso) |
36 |
| -PG_FUNCTION_INFO_V1(iso_to_win1251) |
37 |
| -PG_FUNCTION_INFO_V1(win1251_to_iso) |
38 |
| -PG_FUNCTION_INFO_V1(iso_to_alt) |
39 |
| -PG_FUNCTION_INFO_V1(alt_to_iso) |
| 20 | +PG_FUNCTION_INFO_V1(koi8r_to_mic); |
| 21 | +PG_FUNCTION_INFO_V1(mic_to_koi8r); |
| 22 | +PG_FUNCTION_INFO_V1(iso_to_mic); |
| 23 | +PG_FUNCTION_INFO_V1(mic_to_iso); |
| 24 | +PG_FUNCTION_INFO_V1(win1251_to_mic); |
| 25 | +PG_FUNCTION_INFO_V1(mic_to_win1251); |
| 26 | +PG_FUNCTION_INFO_V1(alt_to_mic); |
| 27 | +PG_FUNCTION_INFO_V1(mic_to_alt); |
| 28 | +PG_FUNCTION_INFO_V1(koi8r_to_win1251); |
| 29 | +PG_FUNCTION_INFO_V1(win1251_to_koi8r); |
| 30 | +PG_FUNCTION_INFO_V1(koi8r_to_alt); |
| 31 | +PG_FUNCTION_INFO_V1(alt_to_koi8r); |
| 32 | +PG_FUNCTION_INFO_V1(alt_to_win1251); |
| 33 | +PG_FUNCTION_INFO_V1(win1251_to_alt); |
| 34 | +PG_FUNCTION_INFO_V1(iso_to_koi8r); |
| 35 | +PG_FUNCTION_INFO_V1(koi8r_to_iso); |
| 36 | +PG_FUNCTION_INFO_V1(iso_to_win1251); |
| 37 | +PG_FUNCTION_INFO_V1(win1251_to_iso); |
| 38 | +PG_FUNCTION_INFO_V1(iso_to_alt); |
| 39 | +PG_FUNCTION_INFO_V1(alt_to_iso); |
40 | 40 |
|
41 | 41 | extern Datum koi8r_to_mic(PG_FUNCTION_ARGS);
|
42 | 42 | extern Datum mic_to_koi8r(PG_FUNCTION_ARGS);
|
|
0 commit comments