13 lines
209 B
C++
13 lines
209 B
C++
#ifndef _TA_UTILS_H
|
|
#define _TA_UTILS_H
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <string>
|
|
|
|
typedef std::string String;
|
|
|
|
#define min(a,b) (((a)<(b))?(a):(b))
|
|
#define max(a,b) (((a)>(b))?(a):(b))
|
|
|
|
#endif
|