| Document Number: | P1666R0 | 
|---|---|
| Date: | 2019-06-09 | 
| Audience: | SG16 | 
| Reply-to: | Tom Honermann <tom@honermann.net> | 
Summaries of SG16 meetings are maintained at https://github.com/sg16-unicode/sg16-meetings. This paper contains a snapshot of select meeting summaries from that repository.
| SF | F | N | A | SA | 
|---|---|---|---|---|
| 3 | 4 | 1 | 0 | 1 | 
$ cat t.cpp 
#include <langinfo.h>
#include <locale>
#include <cstdio>
int main() {
  std::printf("%s\n", nl_langinfo(CODESET));
  std::setlocale(LC_CTYPE, "");
  std::printf("%s\n", nl_langinfo(CODESET));
}
$ g++ t.cpp -o t
$ LANG=C.UTF-8 ./t
ANSI_X3.4-1968
UTF-8
          ]