2021-05-11 16:08:08 -04:00
|
|
|
#ifndef _TA_UTILS_H
|
|
|
|
#define _TA_UTILS_H
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
typedef std::string String;
|
|
|
|
|
2021-05-17 20:18:59 -04:00
|
|
|
#define MIN(a,b) (((a)<(b))?(a):(b))
|
|
|
|
#define MAX(a,b) (((a)>(b))?(a):(b))
|
2021-05-17 16:36:14 -04:00
|
|
|
|
|
|
|
#endif
|