#include "CCPlatformConfig.h"
#include "CCPlatformMacros.h"
#include <float.h>
#include <math.h>
#include <string.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <sys/time.h>
#include <stdint.h>
Macros | |
#define | MIN(x, y) (((x) > (y)) ? (y) : (x)) |
#define | MAX(x, y) (((x) < (y)) ? (y) : (x)) |
#define MAX | ( | x, | |
y | |||
) | (((x) < (y)) ? (y) : (x)) |
var MAX | ( | var, | |
var | |||
) | (((x) < (y)) ? (y) : (x)) |
local MAX | ( | local, | |
local | |||
) | (((x) < (y)) ? (y) : (x)) |
#define MIN | ( | x, | |
y | |||
) | (((x) > (y)) ? (y) : (x)) |
var MIN | ( | var, | |
var | |||
) | (((x) > (y)) ? (y) : (x)) |
local MIN | ( | local, | |
local | |||
) | (((x) > (y)) ? (y) : (x)) |