1 /**********
2 Copyright 1990 Regents of the University of California.  All rights reserved.
3 Author: 1985 Thomas L. Quarles
4 **********/
5 /*
6  */
7 
8     /* CKTfndTask
9      *  find the specified task - not yet supported in spice
10      */
11 
12 #include "ngspice/ngspice.h"
13 #include "ngspice/cktdefs.h"
14 #include "ngspice/ifsim.h"
15 #include "ngspice/sperror.h"
16 
17 
18 
19 /* ARGSUSED */
20 int
CKTfndTask(CKTcircuit * ckt,TSKtask ** taskPtr,IFuid taskName)21 CKTfndTask(CKTcircuit *ckt, TSKtask **taskPtr, IFuid taskName)
22 {
23     NG_IGNORE(ckt);
24     NG_IGNORE(taskPtr);
25     NG_IGNORE(taskName);
26 
27     return(E_UNSUPP);
28 }
29