Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
typedef.h
- Committer:
- akouz
- Date:
- 2013-09-16
- Revision:
- 2:360f136fabaa
File content as of revision 2:360f136fabaa:
#ifndef __TYPEDEF_H
#define __TYPEDEF_H
//##########################################################
// def & enum
//##########################################################
enum {
OK = 0,
ERR = 0xEE,
INVALID = 0,
VALID = 1,
OFF = 0,
ON = 1
};
//##########################################################
// typedef
//##########################################################
typedef unsigned char uchar;
typedef signed char schar;
typedef unsigned int uint;
typedef signed long slong;
typedef unsigned long ulong;
#endif /* __TYPEDEF_H */