summaryrefslogtreecommitdiffstats
path: root/src/util/locale_utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/locale_utils.h')
-rw-r--r--src/util/locale_utils.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/util/locale_utils.h b/src/util/locale_utils.h
index 2510ed4..dec3df0 100644
--- a/src/util/locale_utils.h
+++ b/src/util/locale_utils.h
@@ -35,17 +35,16 @@
#include <string>
-class LocaleVar {
- public:
+class LocaleVar
+{
+public:
const std::string name, value;
- LocaleVar( const char *s_name, const char *s_value )
- : name( s_name ), value( s_value )
- {}
+ LocaleVar( const char* s_name, const char* s_value ) : name( s_name ), value( s_value ) {}
const std::string str( void ) const;
};
const LocaleVar get_ctype( void );
-const char *locale_charset( void );
+const char* locale_charset( void );
bool is_utf8_locale( void );
void set_native_locale( void );
void clear_locale_variables( void );