News:

Download Pelles C here: http://www.smorgasbordet.com/pellesc/

Main Menu

CHAR

Started by John Z, November 04, 2023, 01:04:03 PM

Previous topic - Next topic

John Z

In both 32 bit and 64 bit compiling some mini zip code I ran across this warning message:
C:\Program Files\PellesC\Files\.....\Zip\miniz.h(4117): warning #2074: Escape sequence '\xae' is out of range for 'char'.
C:\Program Files\PellesC\Files\.....\Zip\miniz.h(4117): warning #2074: Escape sequence '\x82' is out of range for 'char'.

But 'char' storage is one byte which should go to \xff so it seems it is checking for char < 127

Is it a valid warning?

John Z

MrBcx

Bcx Basic to C/C++ Translator
https://www.bcxbasiccoders.com

John Z

Thanks MrBCX,

Makes sense if CHAR is signed.  Looks like signed CHAR is somewhat implementation specific.
Std on x86(mostly), unsigned on ARM generally and changeable with an option.
After your hint I found:
Quote
"Is char type is signed by default in C?
By default, char behaves like an unsigned char . To change this default, you can use the DFTCHAR(*SIGNED|*UNSIGNED) option or the #pragma chars directive. See DFTCHAR(*SIGNED|*UNSIGNED) in the ILE C/C++ Compiler Reference for more information.

Character types - IBM
ibm.com

Thanks - with this looks like not a mistake warning.

John Z

MrBcx

Robert Wishlaw shared this tip/trick a couple years ago:

Here is a one liner to check the compiler's default signedness for the char data type.

printf("%d\n",'\x80');


-128 means default is signed char

128 means default is unsigned char

Default for Nuwen, MSVC, CLang and Pelles C is signed.

To change MSVC and Pelles C to unsigned char default add

/J

flag to command line.

To change Nuwen and CLang to unsigned char default add

-funsigned-char

flag to command line.
Bcx Basic to C/C++ Translator
https://www.bcxbasiccoders.com

Robert

Quote from: MrBcx on November 05, 2023, 12:58:50 AM
Robert Wishlaw shared this tip/trick a couple years ago:

Here is a one liner to check the compiler's default signedness for the char data type.

printf("%d\n",'\x80');


-128 means default is signed char

128 means default is unsigned char

Default for Nuwen, MSVC, CLang and Pelles C is signed.

To change MSVC and Pelles C to unsigned char default add

/J

flag to command line.

To change Nuwen and CLang to unsigned char default add

-funsigned-char

flag to command line.

As well as the above, additional information is in the Remarks section of the BCX Documentation for char at

https://bcxbasiccoders.com/webhelp/html/variables.htm#char

WiiLF23

You will also encounter these warnings using cJSON library (github).

In same cases, casting a primitive type resolves "possible lost of data" like use INT_PTR blah = SendMessage(...) which you must read by casting (int) so it removes the warnings. I resolved 4 sections of my code nagging about this.