whats the C macro to check if the argument is a pointer*,variable or pointer**?
Name:
Anonymous2010-07-17 14:50
#define varcopy(dest,source,size) ;memcpy((void*)&dest,(void*)&source,size);
this should be replaced with something like (void*)(isPtr(dest)?&dest:dest)