mirror of
https://github.com/samba-team/samba.git
synced 2025-01-06 13:18:07 +03:00
Merge documentation from 3_0.
This commit is contained in:
parent
ff2b5b2f85
commit
5002555a97
@ -22,17 +22,24 @@
|
|||||||
*/
|
*/
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
|
|
||||||
static pstring cvtbuf;
|
|
||||||
|
|
||||||
static smb_iconv_t conv_handles[NUM_CHARSETS][NUM_CHARSETS];
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @file
|
* @file
|
||||||
*
|
*
|
||||||
* Character set conversion routines.
|
* @brief Character-set conversion routines built on our iconv.
|
||||||
|
*
|
||||||
|
* @note Samba's internal character set (at least in the 3.0 series)
|
||||||
|
* is always the same as the one for the Unix filesystem. It is
|
||||||
|
* <b>not</b> necessarily UTF-8 and may be different on machines that
|
||||||
|
* need i18n filenames to be compatible with Unix software. It does
|
||||||
|
* have to be a superset of ASCII. All multibyte sequences must start
|
||||||
|
* with a byte with the high bit set.
|
||||||
*
|
*
|
||||||
* @sa lib/iconv.c
|
* @sa lib/iconv.c
|
||||||
**/
|
*/
|
||||||
|
|
||||||
|
static pstring cvtbuf;
|
||||||
|
|
||||||
|
static smb_iconv_t conv_handles[NUM_CHARSETS][NUM_CHARSETS];
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user