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.
17 lines
439 B
17 lines
439 B
/*************
|
|
* Header file for gens.c
|
|
* 1999 E. Rouat
|
|
************/
|
|
|
|
#ifndef GENS_H_INCLUDED
|
|
#define GENS_H_INCLUDED
|
|
|
|
#include "dgen.h"
|
|
|
|
void wl_forall(wordlist *wl, void (*fn)(/* ??? */), void *data);
|
|
dgen * dgen_init(GENcircuit *ckt, wordlist *wl, int nomix, int flag, int model);
|
|
int dgen_for_n(dgen *dg, int n, int (*fn) (/* ??? */), void *data, int subindex);
|
|
void dgen_nth_next(dgen **dg, int n);
|
|
|
|
|
|
#endif /* GENS_H_INCLUDED */
|