diff options
| author | Peter Eisentraut <peter_e@gmx.net> | 2008-10-29 08:04:54 +0000 |
|---|---|---|
| committer | Peter Eisentraut <peter_e@gmx.net> | 2008-10-29 08:04:54 +0000 |
| commit | 06735e32566ca2250afdc371b8b2521ee07ad922 (patch) | |
| tree | 0ce96005b5ea63fcb9295f21a595dd376ed3b74d /src/include/mb | |
| parent | 05bba3d176e0adc1a032d5c8c6ea2a7622c7dd0d (diff) | |
| download | postgresql-06735e32566ca2250afdc371b8b2521ee07ad922.tar.gz | |
Unicode escapes in strings and identifiers
Diffstat (limited to 'src/include/mb')
| -rw-r--r-- | src/include/mb/pg_wchar.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/mb/pg_wchar.h b/src/include/mb/pg_wchar.h index b29552fdea..75003ad527 100644 --- a/src/include/mb/pg_wchar.h +++ b/src/include/mb/pg_wchar.h @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/mb/pg_wchar.h,v 1.79 2008/06/18 18:42:54 momjian Exp $ + * $PostgreSQL: pgsql/src/include/mb/pg_wchar.h,v 1.80 2008/10/29 08:04:53 petere Exp $ * * NOTES * This is used both by the backend and by libpq, but should not be @@ -380,6 +380,7 @@ extern const char *GetDatabaseEncodingName(void); extern int pg_valid_client_encoding(const char *name); extern int pg_valid_server_encoding(const char *name); +extern unsigned char *unicode_to_utf8(pg_wchar c, unsigned char *utf8string); extern int pg_utf_mblen(const unsigned char *); extern unsigned char *pg_do_encoding_conversion(unsigned char *src, int len, int src_encoding, |
