18 lines
287 B
C
18 lines
287 B
C
|
#ifndef CASEHANDLER_H
|
||
|
#define CASEHANDLER_H
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
class CaseHandler
|
||
|
{
|
||
|
public:
|
||
|
CaseHandler();
|
||
|
~CaseHandler();
|
||
|
static string lowerCase(string &s);
|
||
|
static void adjustCase(string &buffer, string &comparison);
|
||
|
};
|
||
|
|
||
|
#endif
|