11 lines
119 B
C++
11 lines
119 B
C++
#ifndef __CONVERTS_H__
|
|
#define __CONVERTS_H__
|
|
|
|
#include <string>
|
|
|
|
using namespace std;
|
|
|
|
int str2int(string i);
|
|
|
|
#endif
|