17 lines
361 B
C
17 lines
361 B
C
/*************
|
|
* Header file for gens.c
|
|
* 1999 E. Rouat
|
|
************/
|
|
|
|
#ifndef ngspice_GENS_H
|
|
#define ngspice_GENS_H
|
|
|
|
#include "ngspice/dgen.h"
|
|
|
|
void wl_forall(wordlist *wl, void (*fn)(wordlist*, dgen*), dgen *data);
|
|
int dgen_for_n(dgen *dg, int n, int (*fn) (dgen*, IFparm*, int), IFparm *data, int subindex);
|
|
void dgen_nth_next(dgen **dg, int n);
|
|
|
|
|
|
#endif
|