| 1 |
#ifndef lint
|
| 2 |
static const char RCSid[] = "$Id: otypes.c,v 2.5 2011/02/18 18:47:56 greg Exp $";
|
| 3 |
#endif
|
| 4 |
/*
|
| 5 |
* Object type lookup and error reporting
|
| 6 |
*
|
| 7 |
* External symbols declared in object.h
|
| 8 |
*/
|
| 9 |
|
| 10 |
#include "copyright.h"
|
| 11 |
|
| 12 |
#include "standard.h"
|
| 13 |
|
| 14 |
#include "object.h"
|
| 15 |
|
| 16 |
#include "otypes.h"
|
| 17 |
|
| 18 |
|
| 19 |
int
|
| 20 |
otype( /* get object function number from its name */
|
| 21 |
char *ofname
|
| 22 |
)
|
| 23 |
{
|
| 24 |
int i;
|
| 25 |
|
| 26 |
for (i = 0; i < NUMOTYPE; i++)
|
| 27 |
if (ofun[i].funame[0] == ofname[0] &&
|
| 28 |
!strcmp(ofun[i].funame, ofname))
|
| 29 |
return(i);
|
| 30 |
|
| 31 |
return(-1); /* not found */
|
| 32 |
}
|
| 33 |
|
| 34 |
|
| 35 |
void
|
| 36 |
objerror( /* report error related to object */
|
| 37 |
OBJREC *o,
|
| 38 |
int etyp,
|
| 39 |
char *msg
|
| 40 |
)
|
| 41 |
{
|
| 42 |
char msgbuf[512];
|
| 43 |
|
| 44 |
sprintf(msgbuf, "%s for %s \"%s\"",
|
| 45 |
msg, ofun[o->otype].funame,
|
| 46 |
o->oname!=NULL ? o->oname : "(NULL)");
|
| 47 |
error(etyp, msgbuf);
|
| 48 |
}
|