File: ude-types.h

package info (click to toggle)
ude 0.2.8.final-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 2,096 kB
  • ctags: 1,613
  • sloc: ansic: 12,648; sh: 3,025; makefile: 476; yacc: 318
file content (17 lines) | stat: -rw-r--r-- 418 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _UDE_TYPES_H_
#define _UDE_TYPES_H_

typedef void* UDEPointer;
typedef unsigned char UDEBoolean;
#undef FALSE
#define FALSE (0)
#undef TRUE
#define TRUE (!FALSE)

/* standard return vlaues: */
#define UDE_SUCCESS (0)           /* everything's fine */
#define UDE_FAIL    (-1)          /* operation failed */
#define UDE_BADVAL  (1)           /* bad values */
/* more to come... */

#endif /* !_UDE_TYPES_H_ */