10 lines
104 B
C
10 lines
104 B
C
#ifndef ROT13_H
|
|
#define ROT13_H
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
void rot13(char* in);
|
|
|
|
#endif
|