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

..03-May-2022-

Unicode/H03-May-2022-400,572399,899

conversion_procs/H07-May-2022-5,5593,920

MakefileH A D08-Nov-2021527 217

READMEH A D08-Nov-2021676 2117

conv.cH A D08-Nov-202115.1 KiB685458

encnames.cH A D08-Nov-202111.5 KiB554467

iso.cH A D08-Nov-20211.1 KiB7557

mbutils.cH A D08-Nov-202131.5 KiB1,172681

wchar.cH A D08-Nov-202144.1 KiB2,0551,489

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
6encnames.c:	public functions for both the backend and the frontend.
7conv.c:		static functions and a public table for code conversion
8wchar.c:	mostly static functions and a public table for mb string and
9		multibyte conversion
10mbutils.c:	public functions for the backend only.
11		requires conv.c and wchar.c
12wstrcmp.c:	strcmp for mb
13wstrncmp.c:	strncmp for mb
14win866.c:	a tool to generate KOI8 <--> CP866 conversion table
15iso.c:		a tool to generate KOI8 <--> ISO8859-5 conversion table
16win1251.c:	a tool to generate KOI8 <--> CP1251 conversion table
17
18Introduction
19------------
20	http://www.cprogramming.com/tutorial/unicode.html
21