Created
December 12, 2020 14:20
-
-
Save dmilith/9b5f61b873feb2b532b0ed5295a24b72 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stddef.h> | |
#include <wchar.h> | |
#include <locale.h> | |
int main () { | |
setlocale(LC_ALL, "en_US.UTF-8"); | |
const wchar_t* wc = L"👌"; | |
int length = wcswidth(wc, 1); | |
printf("%ls, length: %d\n", wc, length); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment