summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorMartin Pool <mbp@samba.org>2003-02-24 04:42:24 +0000
committerMartin Pool <mbp@samba.org>2003-02-24 04:42:24 +0000
commit5b5453e6c799cbf3fa7638950825e3b1c276cdc2 (patch)
tree4c62ecc8a1e8be7c3e109705e827d567a58278dd /source3/lib
parent12f2ebf7f006369477824d9b4b917847d63a68af (diff)
downloadsamba-5b5453e6c799cbf3fa7638950825e3b1c276cdc2.tar.gz
samba-5b5453e6c799cbf3fa7638950825e3b1c276cdc2.tar.bz2
samba-5b5453e6c799cbf3fa7638950825e3b1c276cdc2.zip
Merge documentation from 3_0.
(This used to be commit 5002555a9719987ccdc887ffff64ea8d02c9881d)
Diffstat (limited to 'source3/lib')
-rw-r--r--source3/lib/charcnv.c19
1 files changed, 13 insertions, 6 deletions
diff --git a/source3/lib/charcnv.c b/source3/lib/charcnv.c
index bffa2a378c..a8df003f8b 100644
--- a/source3/lib/charcnv.c
+++ b/source3/lib/charcnv.c
@@ -22,17 +22,24 @@
*/
#include "includes.h"
-static pstring cvtbuf;
-
-static smb_iconv_t conv_handles[NUM_CHARSETS][NUM_CHARSETS];
-
/**
* @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
- **/
+ */
+
+static pstring cvtbuf;
+
+static smb_iconv_t conv_handles[NUM_CHARSETS][NUM_CHARSETS];
/**