Changeset 2116:9ef5a5c05cc4 for charset.c
Legend:
- Unmodified
- Added
- Removed
-
charset.c
r2115 r2116 39 39 #endif 40 40 41 #ifdef HAVE_LANGINFO_CODESET42 # include <langinfo.h>43 44 /*45 * Try to convert nl_langinfo's return value to something we can46 * use for MIME's purposes.47 *48 * Note that the algorithm used here is quite different from the49 * one in mutt_canonical_charset.50 */51 52 41 /* 53 42 * The following list has been created manually from the data under: … … 191 180 { NULL, NULL } 192 181 }; 182 183 #ifdef HAVE_LANGINFO_CODESET 184 # include <langinfo.h> 185 193 186 194 187 void mutt_set_langinfo_charset (void)
