mirror of
https://github.com/cheat-engine/cheat-engine
synced 2026-08-15 02:26:08 -04:00
15 lines
234 B
C++
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 + "\""; }
|
|
|
|
|