34 lines
657 B
C
34 lines
657 B
C
|
|
/**********
|
||
|
|
Copyright 1990 Regents of the University of California. All rights reserved.
|
||
|
|
Author: 1985 Thomas L. Quarles
|
||
|
|
**********/
|
||
|
|
/*
|
||
|
|
*/
|
||
|
|
|
||
|
|
/* CKTfndNode
|
||
|
|
* find the given node given its name and return the node pointer
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include "ngspice.h"
|
||
|
|
#include <stdio.h>
|
||
|
|
#include "ifsim.h"
|
||
|
|
#include "sperror.h"
|
||
|
|
#include "cktdefs.h"
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
/* ARGSUSED */
|
||
|
|
int
|
||
|
|
CKTfndNode(void *ckt, void **node, IFuid name)
|
||
|
|
{
|
||
|
|
register CKTnode *here;
|
||
|
|
|
||
|
|
for (here = ((CKTcircuit *)ckt)->CKTnodes; here; here = here->next) {
|
||
|
|
if(here->name == name) {
|
||
|
|
if(node) *node = (char *)here;
|
||
|
|
return(OK);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
return(E_NOTFOUND);
|
||
|
|
}
|