linuxvfs.c (3d5271f9883cba7b54762bc4fe027d4172f06db7) | linuxvfs.c (4de151d8cd2553e7e89044ab5d72fcad4eb04afb) |
---|---|
1/* 2 * linux/fs/befs/linuxvfs.c 3 * 4 * Copyright (C) 2001 Will Dyson <will_dyson@pobox.com 5 * 6 */ 7 8#include <linux/module.h> --- 547 unchanged lines hidden (view full) --- 556 return -EILSEQ; 557} 558 559/** 560 * befs_nls2utf - Convert NLS string to utf8 encodeing 561 * @sb: Superblock 562 * @src: Input string buffer in NLS format 563 * @srclen: Length of input string in bytes | 1/* 2 * linux/fs/befs/linuxvfs.c 3 * 4 * Copyright (C) 2001 Will Dyson <will_dyson@pobox.com 5 * 6 */ 7 8#include <linux/module.h> --- 547 unchanged lines hidden (view full) --- 556 return -EILSEQ; 557} 558 559/** 560 * befs_nls2utf - Convert NLS string to utf8 encodeing 561 * @sb: Superblock 562 * @src: Input string buffer in NLS format 563 * @srclen: Length of input string in bytes |
564 * @dest: The output string in UTF8 format | 564 * @dest: The output string in UTF-8 format |
565 * @destlen: Length of the output buffer 566 * 567 * Converts input string @src, which is in the format of the loaded NLS map, 568 * into a utf8 string. 569 * 570 * The destination string @dest is allocated by this function and the caller is 571 * responsible for freeing it with kfree() 572 * --- 382 unchanged lines hidden --- | 565 * @destlen: Length of the output buffer 566 * 567 * Converts input string @src, which is in the format of the loaded NLS map, 568 * into a utf8 string. 569 * 570 * The destination string @dest is allocated by this function and the caller is 571 * responsible for freeing it with kfree() 572 * --- 382 unchanged lines hidden --- |