Swapping two void pointers is easy without using any extra memory:
void* p1;
void* p2;
//...
p1 = ((uintptr_t)p1) ^ ((uintptr_t)p2);
p2 = ((uintptr_t)p1) ^ ((uintptr_t)p2);
p1 = ((uintptr_t)p1) ^ ((uintptr_t)p2);
But to swap function pointers must I use another pointer? (as they are not guaranteed to fit into any integer type).
void (*p1)();
void (*p2)();
//...
void (*tmp)() = p1;
p1 = p2;
p2 = tmp;
Can anyone give me an example of a fully portable method that will swap function pointers without using a temporary variable?
I think this works, because aliasing through (unsigned) char is allowed: