Add c-call:signed-char
Describe the feature
Add c-call:signed-char
which is a type that matches C signed char
type.
Is there a prototype?
Could probably just add the following line to c-call.lisp:
(def-alien-type signed-char (integer 8))
Describe the feature in more detail
We currently have c-call:char
and c-call:unsigned-char
, where the former is currently signed. To match C code, c-call:char
should really be the same type as C char
. Then we would need something to match C signed char
type.