treewars/itos.h

14 lines
144 B
C
Raw Normal View History

/* itos.h
Converts integer to string
*/
#ifndef _ITOS_H_
#define _ITOS_H_
#include <string>
using std::string;
string itos(int val);
#endif