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

..07-May-2022-

Unicode/H03-May-2022-180,235162,398

conversion_procs/H07-May-2022-5,3453,715

MakefileH A D08-Nov-2021527 217

READMEH A D08-Nov-2021676 2117

conv.cH A D08-Nov-202117.1 KiB781534

encnames.cH A D08-Nov-202113.4 KiB630526

iso.cH A D08-Nov-20211.1 KiB7557

mbutils.cH A D08-Nov-202131.2 KiB1,161680

wchar.cH A D08-Nov-202146.4 KiB2,1031,519

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