Skip to content

Instantly share code, notes, and snippets.

@ownwaterloo
ownwaterloo / character_types.c
Created December 23, 2010 12:53
difference in character types
void f0(int x);
void f0(signed int x) {}
void f1(char x);
void f1(signed char x) {}
void f2(char x);
void f2(unsigned char x) {}
void f(char* pc, int* pi)