1 2 3 4 5 6 7 8 9
#ifndef ROT13_H #define ROT13_H #include <stdlib.h> #include <string.h> void rot13(char* in); #endif