Skip to content

Instantly share code, notes, and snippets.

@erenhatirnaz
Created January 20, 2019 06:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erenhatirnaz/62e6aa5a4a0d4ff1089dc32f0d3fee19 to your computer and use it in GitHub Desktop.
Save erenhatirnaz/62e6aa5a4a0d4ff1089dc32f0d3fee19 to your computer and use it in GitHub Desktop.
ImageMagick paketindeki hatayı keşfetmek için kodladığım bir deney
#include <stdio.h>
#include <ctype.h>
#include <locale.h>
int main() {
setlocale(LC_ALL, "tr_TR.utf8");
// setlocale(LC_ALL, "en_US.utf8");
char ext = 'i';
printf("%c\n", toupper(ext));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment