check-lc_ctype.c 201 B

1234567891011
  1. /*
  2. * Check that a specified locale works as LC_CTYPE. Used by the
  3. * DocBook build system to probe for C.UTF-8 support.
  4. */
  5. #include <locale.h>
  6. int main(void)
  7. {
  8. return !setlocale(LC_CTYPE, "");
  9. }