unsigned_char

Controls whether or not declarations of type char are treated as unsigned char.

Syntax
  #pragma unsigned_char on | off | reset  
Remarks

If you enable this pragma, the compiler treats a char declaration as if it were an unsignedchar declaration.

Note: If you enable this pragma, your code might not be compatible with libraries that were compiled when the pragma was disabled. In particular, your code might not work with the ANSI libraries included with CodeWarrior.

This pragma corresponds to the Use Unsigned Chars setting in the Language panel. To check this setting, use __option(unsigned_char), described in Checking Pragma Settings. By default, this setting is disabled.