Skip to content

Instantly share code, notes, and snippets.

@flatcap
Created December 29, 2021 13:54
Show Gist options
  • Save flatcap/cecd7d3a82c97ddba9612597d3a0a30d to your computer and use it in GitHub Desktop.
Save flatcap/cecd7d3a82c97ddba9612597d3a0a30d to your computer and use it in GitHub Desktop.
translations for yes
#include <stdio.h>
#include <langinfo.h>
#include <locale.h>
int main(int argc, char *argv[])
{
setlocale(LC_ALL, "");
char *expr = nl_langinfo(YESEXPR);
if (expr)
printf("%s\n", expr);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment