1 2 3 4 5 6 7 8
#include <stdio.h> #include <assert.h> int rename(const char *old, const char *new) { (void)old; (void)new; assert(0); // TODO: Implement }