Google
 

Trailing-Edge - PDP-10 Archives - SRI_NIC_PERM_FS_1_19910112 - c/kcc/optitm.c
There are no other files named optitm.c in the archive.
/* This code could be optimized to something much better.
** keep it around as a reminder.
*/

extern struct id_str_s { char *s_cp; int s_len; } idistr();
 
item_exists(item)
int item;
{
    struct id_str_s  itmbuf;

    itmbuf = idistr(item);
    return (itmbuf.s_len != 0);
}