Controls whether or not declarations of type char are treated as unsigned char.
#pragma unsigned_char on | off | reset
If you enable this pragma, the compiler treats a char declaration as if it were an unsignedchar declaration.
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.