ngspice/src/include/compatmode.h

16 lines
252 B
C
Raw Normal View History

2009-11-15 22:22:04 +01:00
#ifndef _COMPATMODE_H
#define _COMPATMODE_H
#include <config.h>
typedef enum {
COMPATMODE_NATIVE = 0,
COMPATMODE_HSPICE = 1,
2010-04-24 00:00:40 +02:00
COMPATMODE_SPICE3 = 2,
COMPATMODE_ALL = 3,
2009-11-15 22:22:04 +01:00
} COMPATMODE_T ;
extern COMPATMODE_T ngspice_compat_mode(void) ;
2009-11-15 22:22:04 +01:00
#endif