File: MOGtypes.h

package info (click to toggle)
mazeofgalious 0.62.dfsg2-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 13,588 kB
  • sloc: cpp: 23,568; makefile: 27
file content (10 lines) | stat: -rw-r--r-- 167 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
#ifndef __MOG_TYPES
#define __MOG_TYPES

typedef unsigned char BYTE;

#define min(a,b) ((a)<(b) ? (a) : (b))
#define max(a,b) ((a)>(b) ? (a) : (b))

#endif