Skip to content

Instantly share code, notes, and snippets.

@CameronNorth
CameronNorth / ROT13.cpp
Created January 15, 2013 04:58
A simple ROT13 encryption program for you to critique.
#include <iostream>
#include <iomanip>
#include <fstream>
#include <string>
#include <stdlib.h>
std::string getfile(int x);
std::string outputfile(std::string a);
std::string crypt(std::string a);