mirror of
https://git.code.sf.net/p/ngspice/ngspice
synced 2026-09-05 03:12:07 +02:00
15 lines
174 B
C
15 lines
174 B
C
#ifndef _BOOL_H
|
|
#define _BOOL_H
|
|
|
|
typedef unsigned char bool;
|
|
typedef int BOOL ;
|
|
|
|
#define BOOLEAN int
|
|
#define TRUE 1
|
|
#define FALSE 0
|
|
#define NO 0
|
|
#define YES 1
|
|
|
|
|
|
#endif
|