Hi All,

On 10/10/08, Jay A. Kreibich <[EMAIL PROTECTED]> wrote:
> On Fri, Oct 10, 2008 at 12:59:31PM -0400, Igor Tandetnik scratched on the
> wall:
>> Shaun R. <[EMAIL PROTECTED]> wrote:
>   It is true that on most systems "char" is signed, but it is worth
>   remembering that this is not universally true.  This is why "char" and
>   "signed char" are actually different types in C, unlike "int" and
>   "signed int", which are assumed to be the exact same type.

I do not know for sure about C but "char", "signed char" and "unsigned
char" are three different data types in C++ and the SAFEST portable
way that is supposed to work across all compilers and platforms is to
use simply "char" - no "signed char" or "unsigned char".

-Asif
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to