Added numpaif.h for the external interface to the numparam library.

This commit is contained in:
sjborley 2005-05-29 01:18:20 +00:00
parent c87326ebc8
commit 0374c45d2a
2 changed files with 21 additions and 9 deletions

View File

@ -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 */

View File

@ -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 ********/