21 Jul
2016
21 Jul
'16
6:40 a.m.
"Iván Matellanes" <matellanesivan(a)gmail.com> writes:
signed char and char are equivalent in Visual C++, so specific functions for signed char are unnecessary.
Note that you can't assume that 'char' is signed for the Unix compiler. If it makes a difference, you'd have to specify signed char explicitly. Otherwise, you could as well you the same functions for the unsigned case too. -- Alexandre Julliard julliard(a)winehq.org