cheat-engine/underc/sourcecode/verify/attrib.cpp
cheatengine@gmail.com 4d297adfd2
2011-07-04 19:52:19 +00:00

15 lines
234 B
C++

// C++ By Example, Chapter 9
// Generating XML/HTML
#include "attrib.h"
using namespace std;
string int2str(int i)
{
char buff[30];
return itoa(i,buff,10);
}
string quotes(string s)
{ return "\"" + s + "\""; }