Release 4.11 fs/nls/nls_utf8.c
/*
* Module for handling utf8 just like any other charset.
* By Urban Widmark 2000
*/
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/string.h>
#include <linux/nls.h>
#include <linux/errno.h>
static unsigned char identity[256];
static int uni2char(wchar_t uni, unsigned char *out, int boundlen)
{
int n;
if (boundlen <= 0)
return -ENAMETOOLONG;
n = utf32_to_utf8(uni, out, boundlen);
if (n < 0) {
*out = '?';
return -EINVAL;
}
return n;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 44 | 72.13% | 1 | 50.00% |
Alan Stern | 17 | 27.87% | 1 | 50.00% |
Total | 61 | 100.00% | 2 | 100.00% |
static int char2uni(const unsigned char *rawstring, int boundlen, wchar_t *uni)
{
int n;
unicode_t u;
n = utf8_to_utf32(rawstring, boundlen, &u);
if (n < 0 || u > MAX_WCHAR_T) {
*uni = 0x003f; /* ? */
return -EINVAL;
}
*uni = (wchar_t) u;
return n;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 43 | 61.43% | 1 | 50.00% |
Alan Stern | 27 | 38.57% | 1 | 50.00% |
Total | 70 | 100.00% | 2 | 100.00% |
static struct nls_table table = {
.charset = "utf8",
.uni2char = uni2char,
.char2uni = char2uni,
.charset2lower = identity, /* no conversion */
.charset2upper = identity,
};
static int __init init_nls_utf8(void)
{
int i;
for (i=0; i<256; i++)
identity[i] = i;
return register_nls(&table);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 39 | 100.00% | 1 | 100.00% |
Total | 39 | 100.00% | 1 | 100.00% |
static void __exit exit_nls_utf8(void)
{
unregister_nls(&table);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 15 | 100.00% | 1 | 100.00% |
Total | 15 | 100.00% | 1 | 100.00% |
module_init(init_nls_utf8)
module_exit(exit_nls_utf8)
MODULE_LICENSE("Dual BSD/GPL");
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 191 | 74.90% | 1 | 20.00% |
Alan Stern | 44 | 17.25% | 1 | 20.00% |
Art Haas | 10 | 3.92% | 1 | 20.00% |
Linus Torvalds | 5 | 1.96% | 1 | 20.00% |
Dave Jones | 5 | 1.96% | 1 | 20.00% |
Total | 255 | 100.00% | 5 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.