postgresql/src/backend/utils/mb
Robert Haas 5d4b60f2f2 Lots of doc corrections.
Josh Kupershmidt
2012-04-23 22:43:09 -04:00
..
conversion_procs Update copyright notices for year 2012. 2012-01-01 18:01:58 -05:00
Unicode Update copyright notices for year 2012. 2012-01-01 18:01:58 -05:00
conv.c Update copyright notices for year 2012. 2012-01-01 18:01:58 -05:00
encnames.c Remove cvs keywords from all files. 2010-09-20 22:08:53 +02:00
iso.c Remove cvs keywords from all files. 2010-09-20 22:08:53 +02:00
Makefile Remove cvs keywords from all files. 2010-09-20 22:08:53 +02:00
mbutils.c Fix char2wchar/wchar2char to support collations properly. 2011-04-23 12:35:41 -04:00
README Remove cvs keywords from all files. 2010-09-20 22:08:53 +02:00
wchar.c Lots of doc corrections. 2012-04-23 22:43:09 -04:00
win866.c Remove cvs keywords from all files. 2010-09-20 22:08:53 +02:00
win1251.c Remove cvs keywords from all files. 2010-09-20 22:08:53 +02:00
wstrcmp.c Remove cvs keywords from all files. 2010-09-20 22:08:53 +02:00
wstrncmp.c Remove cvs keywords from all files. 2010-09-20 22:08:53 +02:00

src/backend/utils/mb/README

Encodings
=========

encnames.c:	public functions for both the backend and the frontend.
conv.c:		static functions and a public table for code conversion
wchar.c:	mostly static functions and a public table for mb string and
		multibyte conversion
mbutils.c:	public functions for the backend only.
		requires conv.c and wchar.c
wstrcmp.c:	strcmp for mb
wstrncmp.c:	strncmp for mb
win866.c:	a tool to generate KOI8 <--> CP866 conversion table
iso.c:		a tool to generate KOI8 <--> ISO8859-5 conversion table
win1251.c:	a tool to generate KOI8 <--> CP1251 conversion table

Introduction
------------
	http://www.cprogramming.com/tutorial/unicode.html