I wrote some code that uses memset to initialize arrays of built-in types like ints, shorts, floats and, more importantly, pointers, like
typedef void* slot_t;
#define EMPTY_SLOT (slot_t)NULL
...
int n = 10;
slot_t slots[] = (slot_t[])malloc(sizeof(slot_t)*n)
memset(slots,(int)EMPTY_SLOT,n*sizeof(slot_t));
this code works nicely in Linux32 where memset accepts 32-bit ints as second argument (i.e. initializing element), but it's not so for Linux64, where sizeof(slot_t)>sizeof(int), and, IIRC, in other platforms where memset accepts char as its second argument. I have yet to verify that any of the bugs I'm experiencing in my project is due to this but, anyway, to be sure, it would be better to adopt a safer, but still "generic", method, if exists. Do you know any?