Jspice3
inpkmods.c File Reference
#include "spice.h"
#include <stdio.h>
#include "inpdefs.h"
Include dependency graph for inpkmods.c:

Go to the source code of this file.

Functions

void INPkillMods ()
 

Variables

INPmodelmodtab
 

Function Documentation

void INPkillMods ( )

Definition at line 16 of file inpkmods.c.

18 {
19  INPmodel *modtmp, *next;
20 
21  for (modtmp = modtab; modtmp != (INPmodel *)NULL; modtmp = next) {
22  next = modtmp->INPnextModel;
23  txfree(modtmp);
24  }
25  modtab = (INPmodel *)NULL;
26 }
INPmodel * modtab
Definition: inpmkmod.c:13
void txfree()
#define NULL
Definition: spdefs.h:121
struct sINPmodel * INPnextModel
Definition: inpdefs.h:74

Variable Documentation

INPmodel* modtab

Definition at line 13 of file inpmkmod.c.