Guest User

Untitled

a guest
Jun 24th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #include <wchar.h>
  2. #include <stdio.h>
  3. #include <locale.h>
  4.  
  5. int main(void) {
  6. char *loc = setlocale(LC_ALL, "");
  7. printf("%s %d\n", loc, wcwidth(0xFE0F));
  8. return 0;
  9. }
Add Comment
Please, Sign In to add comment