cs201/PG4/PG4.h

17 lines
326 B
C++

// Ben Harris
// Header for PG4
#ifndef _PG4_
#define _PG4_
#include<iostream>
#include<string>
#include<cstdlib>
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