PostgreSQL Source Code
git master
|
#include "postgres.h"
#include "fmgr.h"
#include "mb/pg_wchar.h"
#include "../../Unicode/utf8_to_koi8r.map"
#include "../../Unicode/koi8r_to_utf8.map"
#include "../../Unicode/utf8_to_koi8u.map"
#include "../../Unicode/koi8u_to_utf8.map"
Go to the source code of this file.
Variables | |
PG_MODULE_MAGIC | |
Datum koi8r_to_utf8 | ( | PG_FUNCTION_ARGS | ) |
Definition at line 66 of file utf8_and_cyrillic.c.
References CHECK_ENCODING_CONVERSION_ARGS, generate_unaccent_rules::dest, len, LocalToUtf(), PG_GETARG_BOOL, PG_GETARG_CSTRING, PG_GETARG_INT32, PG_KOI8R, PG_RETURN_INT32, and PG_UTF8.
Datum koi8u_to_utf8 | ( | PG_FUNCTION_ARGS | ) |
Definition at line 108 of file utf8_and_cyrillic.c.
References CHECK_ENCODING_CONVERSION_ARGS, generate_unaccent_rules::dest, len, LocalToUtf(), PG_GETARG_BOOL, PG_GETARG_CSTRING, PG_GETARG_INT32, PG_KOI8U, PG_RETURN_INT32, and PG_UTF8.
PG_FUNCTION_INFO_V1 | ( | koi8r_to_utf8 | ) |
PG_FUNCTION_INFO_V1 | ( | koi8u_to_utf8 | ) |
PG_FUNCTION_INFO_V1 | ( | utf8_to_koi8r | ) |
PG_FUNCTION_INFO_V1 | ( | utf8_to_koi8u | ) |
Datum utf8_to_koi8r | ( | PG_FUNCTION_ARGS | ) |
Definition at line 45 of file utf8_and_cyrillic.c.
References CHECK_ENCODING_CONVERSION_ARGS, generate_unaccent_rules::dest, len, PG_GETARG_BOOL, PG_GETARG_CSTRING, PG_GETARG_INT32, PG_KOI8R, PG_RETURN_INT32, PG_UTF8, and UtfToLocal().
Datum utf8_to_koi8u | ( | PG_FUNCTION_ARGS | ) |
Definition at line 87 of file utf8_and_cyrillic.c.
References CHECK_ENCODING_CONVERSION_ARGS, generate_unaccent_rules::dest, len, PG_GETARG_BOOL, PG_GETARG_CSTRING, PG_GETARG_INT32, PG_KOI8U, PG_RETURN_INT32, PG_UTF8, and UtfToLocal().
PG_MODULE_MAGIC |
Definition at line 22 of file utf8_and_cyrillic.c.