"Iván Matellanes" matellanesivan@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.