File: system_encoding.c

package info (click to toggle)
haskell-encoding 0.10.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,392 kB
  • sloc: haskell: 4,372; ansic: 11; makefile: 4
file content (6 lines) | stat: -rw-r--r-- 117 bytes parent folder | download
1
2
3
4
5
6
#include "system_encoding.h"

char* get_system_encoding() {
  setlocale(LC_ALL,"");
  return nl_langinfo(CODESET);
}