cs201/PG4/PG4.h

17 lines
326 B
C
Raw Permalink Normal View History

2016-09-20 21:06:42 +00:00
// Ben Harris
// Header for PG4
#ifndef _PG4_
#define _PG4_
#include<iostream>
#include<string>
#include<cstdlib>
2016-09-20 21:06:42 +00:00
using namespace std;
int main(int argc, char **argv); // Main...
string converttolower(string s); // Used to convert strings to lower, since tolower() only converts one char at a time
#endif