mirror of
https://github.com/ScrelliCopter/VGM-Tools
synced 2025-02-21 04:09:25 +11:00
8 lines
127 B
C
8 lines
127 B
C
#ifndef COMMON_H
|
|
#define COMMON_H
|
|
|
|
#define MIN(a,b) (((a)<(b))?(a):(b))
|
|
#define MAX(a,b) (((a)>(b))?(a):(b))
|
|
|
|
#endif//COMMON_H
|