Purple
0.1
Standard Language Specification
include
utils
misc.h
Go to the documentation of this file.
1
8
#ifndef MISC_H
9
#define MISC_H
10
11
#include <math.h>
12
#include <stdio.h>
13
#include <string.h>
14
15
#define MIN(x, y) (x < y ? x : y)
16
#define MAX(x, y) (x > y ? x : y)
17
18
#endif
/* MISC_H */
Generated by
1.9.4