//en.cppreference.com/w/c/string/byte/iscntrl.html
#include <stdio.h>
#include <ctype.h>
#include <locale.h>
int main(void)
{
unsigned char c = '\x94'; // the control code CCH in ISO-8859-1
printf("In the default C locale, \\x94 is %sa control character\n",
iscntrl(c) ? "" : "not " );
setlocale(LC_ALL, "en_GB.iso88591");
printf("In ISO-8859-1 locale, \\x94 is %sa control character\n",
iscntrl(c) ? "" : "not " );
}