Files
ngspice/src/include/bool.h
T

15 lines
174 B
C
Raw Normal View History

2000-05-06 14:12:51 +00:00
#ifndef _BOOL_H
#define _BOOL_H
2000-05-13 10:43:15 +00:00
typedef unsigned char bool;
2009-08-23 10:02:28 +00:00
typedef int BOOL ;
2008-04-13 12:46:36 +00:00
#define BOOLEAN int
#define TRUE 1
2000-05-13 10:43:15 +00:00
#define FALSE 0
#define NO 0
#define YES 1
2000-05-06 14:12:51 +00:00
#endif