diff options
Diffstat (limited to 'src/FbTk/FbString.cc')
-rw-r--r-- | src/FbTk/FbString.cc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/FbTk/FbString.cc b/src/FbTk/FbString.cc index a88b237..6c5ffbb 100644 --- a/src/FbTk/FbString.cc +++ b/src/FbTk/FbString.cc | |||
@@ -107,6 +107,14 @@ void shutdown() { | |||
107 | @param size number of BYTES to convert | 107 | @param size number of BYTES to convert |
108 | @return the recoded string, or 0 on failure | 108 | @return the recoded string, or 0 on failure |
109 | */ | 109 | */ |
110 | |||
111 | /** | ||
112 | --NOTE-- | ||
113 | In the "C" locale, this will strip any high-bit characters | ||
114 | because C means 7-bit ASCII charset. If you don't want this | ||
115 | then you need to set your locale to something UTF-8, OR something | ||
116 | ISO8859-1. | ||
117 | */ | ||
110 | std::string recode(iconv_t cd, | 118 | std::string recode(iconv_t cd, |
111 | const std::string &in) { | 119 | const std::string &in) { |
112 | 120 | ||