summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/PrintHelpers/rot13.h
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/RunCMake/PrintHelpers/rot13.h')
-rw-r--r--Tests/RunCMake/PrintHelpers/rot13.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/Tests/RunCMake/PrintHelpers/rot13.h b/Tests/RunCMake/PrintHelpers/rot13.h
new file mode 100644
index 0000000..9afea5f
--- /dev/null
+++ b/Tests/RunCMake/PrintHelpers/rot13.h
@@ -0,0 +1,9 @@
+#ifndef ROT13_H
+#define ROT13_H
+
+#include <stdlib.h>
+#include <string.h>
+
+void rot13(char* in);
+
+#endif