You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
336 B
C++
20 lines
336 B
C++
#include <cstdint>
|
|
#include <iostream>
|
|
#include <sstream>
|
|
|
|
#if INTPTR_MAX == INT64_MAX
|
|
#define ENVIRONMENT64
|
|
#elif INTPTR_MAX == INT32_MAX
|
|
#define ENVIRONMENT32
|
|
#else
|
|
#error Unknown pointer size or missing size macros!
|
|
#endif
|
|
|
|
using namespace std;
|
|
|
|
|
|
class CinParser {
|
|
public:
|
|
static int parse( long long int *pStorage );
|
|
};
|