summarylogtreecommitdiffstats
path: root/Txt.h
blob: 46d15aa2f1500b46d5058b116aab9047da9157ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _TXT_H_
#define _TXT_H_

#include "destructive_reasoning.h"

class Txt
{
	public:
		static int contains(std::string s, char c);
		static std::string trimEnd(std::string s);
		static std::string trimFront(std::string s);
		static std::string substring(std::string s, int start, int end);
};

#endif