ngspice/src/frontend/gens.h

17 lines
361 B
C
Raw Normal View History

2000-04-27 22:03:57 +02:00
/*************
* Header file for gens.c
* 1999 E. Rouat
************/
2013-01-23 20:57:32 +01:00
#ifndef ngspice_GENS_H
#define ngspice_GENS_H
2000-04-27 22:03:57 +02:00
#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);
2000-04-27 22:03:57 +02:00
void dgen_nth_next(dgen **dg, int n);
#endif