Added numpaif.h for the external interface to the numparam library.
This commit is contained in:
parent
c87326ebc8
commit
0374c45d2a
|
|
@ -0,0 +1,20 @@
|
|||
/*
|
||||
* numpaif.h
|
||||
* external interface to spice frontend subckt.c
|
||||
* $Id$
|
||||
*/
|
||||
|
||||
#ifndef NUMPAIF_H
|
||||
#define NUMPAIF_H
|
||||
|
||||
#define NUPADECKCOPY 0
|
||||
#define NUPASUBSTART 1
|
||||
#define NUPASUBDONE 2
|
||||
#define NUPAEVALDONE 3
|
||||
|
||||
extern char * nupa_copy(char *s, int linenum);
|
||||
extern int nupa_eval(char *s, int linenum);
|
||||
extern int nupa_signal(int sig, char *info);
|
||||
extern void nupa_scan(char * s, int linenum);
|
||||
|
||||
#endif /* NUMPAIF_H */
|
||||
|
|
@ -5,15 +5,7 @@
|
|||
|
||||
/*** interface to spice frontend subckt.c ***/
|
||||
|
||||
#define NUPADECKCOPY 0
|
||||
#define NUPASUBSTART 1
|
||||
#define NUPASUBDONE 2
|
||||
#define NUPAEVALDONE 3
|
||||
|
||||
extern char * nupa_copy(char *s, int linenum);
|
||||
extern int nupa_eval(char *s, int linenum);
|
||||
extern int nupa_signal(int sig, char *info);
|
||||
extern void nupa_scan(char * s, int linenum);
|
||||
#include "numpaif.h"
|
||||
|
||||
/***** numparam internals ********/
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue