• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..07-May-2022-

Unicode/H03-May-2022-180,257162,410

conversion_procs/H07-May-2022-5,1933,651

MakefileH A D08-Nov-2021539 2612

READMEH A D08-Nov-2021727 2418

conv.cH A D08-Nov-202116.4 KiB736503

iso.cH A D08-Nov-20211.1 KiB7557

mbutils.cH A D08-Nov-202144.5 KiB1,7071,024

stringinfo_mb.cH A D08-Nov-20212 KiB8744

win1251.cH A D08-Nov-20211.1 KiB7557

win866.cH A D08-Nov-20211.1 KiB7557

wstrcmp.cH A D08-Nov-20212 KiB4810

wstrncmp.cH A D08-Nov-20212.4 KiB7838

README

1src/backend/utils/mb/README
2
3Encodings
4=========
5
6conv.c:		static functions and a public table for code conversion
7mbutils.c:	public functions for the backend only.
8stringinfo_mb.c: public backend-only multibyte-aware stringinfo functions
9wstrcmp.c:	strcmp for mb
10wstrncmp.c:	strncmp for mb
11win866.c:	a tool to generate KOI8 <--> CP866 conversion table
12iso.c:		a tool to generate KOI8 <--> ISO8859-5 conversion table
13win1251.c:	a tool to generate KOI8 <--> CP1251 conversion table
14
15See also in src/common/:
16
17encnames.c:	public functions for encoding names
18wchar.c:	mostly static functions and a public table for mb string and
19		multibyte conversion
20
21Introduction
22------------
23	http://www.cprogramming.com/tutorial/unicode.html
24