36 lines
813 B
C
36 lines
813 B
C
/**********
|
|
Copyright 1990 Regents of the University of California. All rights reserved.
|
|
Author: 1985 Thomas L. Quarles
|
|
**********/
|
|
|
|
/*
|
|
* CKTpName()
|
|
*
|
|
* Take a parameter by Name and set it on the specified device
|
|
*/
|
|
|
|
#include "ngspice/ngspice.h"
|
|
#include "ngspice/ifsim.h"
|
|
#include "ngspice/devdefs.h"
|
|
#include "ngspice/cktdefs.h"
|
|
#include "ngspice/gendefs.h"
|
|
#include "ngspice/sperror.h"
|
|
|
|
|
|
int
|
|
CKTpName(char *parm, IFvalue *val, CKTcircuit *ckt, int dev, char *name, GENinstance **fast)
|
|
{
|
|
IFdevice *device = &(DEVices[dev]->DEVpublic);
|
|
|
|
IFparm *p = device->instanceParms;
|
|
IFparm *p_end = p + *(device->numInstanceParms);
|
|
|
|
NG_IGNORE(name);
|
|
|
|
for (; p < p_end; p++)
|
|
if (!strcmp(parm, p->keyword))
|
|
return CKTparam(ckt, *fast, p->id, val, NULL);
|
|
|
|
return E_BADPARM;
|
|
}
|