#ifndef TYPES_H #define TYPES_H typedef unsigned char uchar; typedef unsigned short int ushort; typedef unsigned int uint; typedef unsigned char boolean; struct Point { int x,y; }; #endif