Skip to content
Snippets Groups Projects
locale_h.c 102 B
#include <locale.h>

int main() {
  struct lconv *lc = localeconv();
  return lc->decimal_point[0];
}