ReactOS 0.4.15-dev-7918-g2a2556c
nls_cp850.c File Reference
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/string.h>
#include <linux/nls.h>
#include <linux/errno.h>
Include dependency graph for nls_cp850.c:

Go to the source code of this file.

Functions

static int uni2char (wchar_t uni, unsigned char *out, int boundlen)
 
static int char2uni (const unsigned char *rawstring, int boundlen, wchar_t *uni)
 
static int __init init_nls_cp850 (void)
 
static void __exit exit_nls_cp850 (void)
 

Variables

static wchar_t charset2uni [256]
 
static unsigned char page00 [256]
 
static unsigned char page01 [256]
 
static unsigned char page20 [256]
 
static unsigned char page25 [256]
 
static unsigned charpage_uni2charset [256]
 
static unsigned char charset2lower [256]
 
static unsigned char charset2upper [256]
 
static struct nls_table table
 

Function Documentation

◆ char2uni()

static int char2uni ( const unsigned char rawstring,
int  boundlen,
wchar_t uni 
)
static

Definition at line 286 of file nls_cp850.c.

287{
288 *uni = charset2uni[*rawstring];
289 if (*uni == 0x0000)
290 return -EINVAL;
291 return 1;
292}
#define EINVAL
Definition: acclib.h:90
static wchar_t charset2uni[256]
Definition: nls_cp850.c:16

◆ exit_nls_cp850()

static void __exit exit_nls_cp850 ( void  )
static

Definition at line 309 of file nls_cp850.c.

310{
312}
int unregister_nls(struct nls_table *)
Definition: nls_base.c:185

Referenced by Ext2UnloadAllNls().

◆ init_nls_cp850()

static int __init init_nls_cp850 ( void  )
static

Definition at line 304 of file nls_cp850.c.

305{
306 return register_nls(&table);
307}
int register_nls(struct nls_table *)
Definition: nls_base.c:162

Referenced by Ext2LoadAllNls().

◆ uni2char()

static int uni2char ( wchar_t  uni,
unsigned char out,
int  boundlen 
)
static

Definition at line 269 of file nls_cp850.c.

270{
271 unsigned char *uni2charset;
272 unsigned char cl = uni & 0x00ff;
273 unsigned char ch = (uni & 0xff00) >> 8;
274
275 if (boundlen <= 0)
276 return -ENAMETOOLONG;
277
278 uni2charset = page_uni2charset[ch];
279 if (uni2charset && uni2charset[cl])
280 out[0] = uni2charset[cl];
281 else
282 return -EINVAL;
283 return 1;
284}
static unsigned char * page_uni2charset[256]
Definition: nls_cp850.c:189
static FILE * out
Definition: regtests2xml.c:44
#define ENAMETOOLONG
Definition: errno.h:55

Variable Documentation

◆ charset2lower

unsigned char charset2lower[256]
static

Definition at line 197 of file nls_cp850.c.

◆ charset2uni

wchar_t charset2uni[256]
static

Definition at line 16 of file nls_cp850.c.

Referenced by char2uni().

◆ charset2upper

unsigned char charset2upper[256]
static

Definition at line 233 of file nls_cp850.c.

◆ page00

unsigned char page00[256]
static

Definition at line 99 of file nls_cp850.c.

◆ page01

unsigned char page01[256]
static
Initial value:
= {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xd5, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x9f, 0x00, 0x00, 0x00, 0x00, 0x00,
}

Definition at line 135 of file nls_cp850.c.

◆ page20

unsigned char page20[256]
static
Initial value:
= {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf2,
}

Definition at line 158 of file nls_cp850.c.

◆ page25

unsigned char page25[256]
static
Initial value:
= {
0xc4, 0x00, 0xb3, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0xda, 0x00, 0x00, 0x00,
0xbf, 0x00, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00,
0xd9, 0x00, 0x00, 0x00, 0xc3, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0xb4, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0xc2, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0xc1, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0xc5, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0xcd, 0xba, 0x00, 0x00, 0xc9, 0x00, 0x00, 0xbb,
0x00, 0x00, 0xc8, 0x00, 0x00, 0xbc, 0x00, 0x00,
0xcc, 0x00, 0x00, 0xb9, 0x00, 0x00, 0xcb, 0x00,
0x00, 0xca, 0x00, 0x00, 0xce, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0xdf, 0x00, 0x00, 0x00, 0xdc, 0x00, 0x00, 0x00,
0xdb, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0xb0, 0xb1, 0xb2, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
}

Definition at line 164 of file nls_cp850.c.

◆ page_uni2charset

unsigned char* page_uni2charset[256]
static
Initial value:
= {
}
#define NULL
Definition: types.h:112
static unsigned char page01[256]
Definition: nls_cp850.c:135
static unsigned char page20[256]
Definition: nls_cp850.c:158
static unsigned char page25[256]
Definition: nls_cp850.c:164
static unsigned char page00[256]
Definition: nls_cp850.c:99

Definition at line 189 of file nls_cp850.c.

Referenced by uni2char().

◆ table

Initial value:
= {
"cp850",
0,
}
#define THIS_MODULE
Definition: module.h:269
static int char2uni(const unsigned char *rawstring, int boundlen, wchar_t *uni)
Definition: nls_cp850.c:286
static int uni2char(wchar_t uni, unsigned char *out, int boundlen)
Definition: nls_cp850.c:269
static unsigned char charset2lower[256]
Definition: nls_cp850.c:197
static unsigned char charset2upper[256]
Definition: nls_cp850.c:233

Definition at line 294 of file nls_cp850.c.