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
376 B
17 lines
376 B
/**********
|
|
Copyright 1990 Regents of the University of California. All rights reserved.
|
|
Author: 1985 Thomas L. Quarles
|
|
**********/
|
|
|
|
#include "ngspice/config.h"
|
|
#include "ngspice/cktdefs.h"
|
|
#include "ngspice/devdefs.h"
|
|
#include "ngspice/sperror.h"
|
|
#include "string.h"
|
|
|
|
|
|
GENinstance *
|
|
CKTfndDev(CKTcircuit *ckt, IFuid name)
|
|
{
|
|
return nghash_find(ckt->DEVnameHash, name);
|
|
}
|