Files
retrobsd/tools/configsys/util.h
2014-04-09 14:27:18 +01:00

12 lines
176 B
C++

#ifndef _UTIL_H
#define _UTIL_H
#include <string>
using namespace std;
extern void replace_all(string &haystack, string from, string to);
extern void uc(string &s);
#endif