You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef COMMONH
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
typedef unsigned char byte; //8bit (byte) variable type
|
|
typedef unsigned short word; //16bit (2byte) variable type
|
|
typedef enum {false, true} bool;
|
|
#endif
|
|
|
|
#define COMMONH |