You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
postgres/src/backend/utils/mb
Tatsuo Ishii 6f843e8dd8 Fix pg_euccn_mblen() so that it always returns 2 if data is not ascii. 26 years ago
..
Makefile Removed MBFLAGS from makefiles since it's now done in include/config.h. 26 years ago
README Add UDC (User Defined Characters) support to SJIS/EUC_JP conversion 26 years ago
alt.c pgindent run over code. 27 years ago
big5.c Add fix for 0x7fU constants to pgindent 27 years ago
common.c Remove compiler warnings 26 years ago
conv.c Add UDC (User Defined Characters) support to SJIS/EUC_JP conversion 26 years ago
iso.c pgindent run over code. 27 years ago
mbutils.c Eliminate query length limitation imposed by pg_client_to_server 27 years ago
utftest.c Change #include's to use <> and "" as appropriate. 27 years ago
variable.c Fix minor comping errors 26 years ago
wchar.c Fix pg_euccn_mblen() so that it always returns 2 if data is not ascii. 26 years ago
win.c pgindent run over code. 27 years ago
wstrcmp.c Change #include's to use <> and "" as appropriate. 27 years ago
wstrncmp.c Change #include's to use <> and "" as appropriate. 27 years ago

README

common.c:	public functions for both the backend and the frontend.
requires conv.c and wchar.c
conv.c: static functions and a public table for code conversion
wchar.c: mostly static functions and a public table for mb string and
multi-byte conversion
mbutilc.c: public functions for the backend only.
requires conv.c and wchar.c
wstrcmp.c: strcmp for mb
wstrncmp.c: strncmp for mb
varable.c: public functions for show/set/reset variable commands
alt.c: a tool to generate KOI8 <--> CP866 conversion table
iso.c: a tool to generate KOI8 <--> ISO8859-5 conversion table
win.c: a tool to generate KOI8 <--> CP1251 conversion table
big5.c: conversion between BIG5 and Mule Internal Code(CNS 116643-1992
plane 1 and plane 2).
utftest.c: test driver for utf2wchar()