You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
252 B
15 lines
252 B
#ifndef _COMPATMODE_H
|
|
#define _COMPATMODE_H
|
|
|
|
#include <config.h>
|
|
|
|
typedef enum {
|
|
COMPATMODE_NATIVE = 0,
|
|
COMPATMODE_HSPICE = 1,
|
|
COMPATMODE_SPICE3 = 2,
|
|
COMPATMODE_ALL = 3,
|
|
} COMPATMODE_T ;
|
|
|
|
extern COMPATMODE_T ngspice_compat_mode(void) ;
|
|
|
|
#endif
|