summaryrefslogtreecommitdiff
path: root/src/utf8.c
blob: c15e5c150995d4614aea9c9cc339a6515b8c7392 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "ratpoison.h"

#ifdef HAVE_LANGINFO_CODESET
# include <langinfo.h>
#endif

int utf8_locale;

int
utf8_check_locale(void)
{
#ifdef HAVE_LANGINFO_CODESET
  utf8_locale = !strcmp (nl_langinfo (CODESET), "UTF-8");
#endif
  return utf8_locale;
}