File: system_encoding.c

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

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