#include "defs.h" /* place in 'symbol' the entry for given name return 1 if found and 0 otherwise */ findsym(n) char *n; { STRING cf, ct; Lseek(file, limit+HDRSIZ, 0); scansym(symbol) { cf = n; for (ct = symbol->nm; ct <= &symbol->zero; ct++) if (*cf != *ct) break; else if (*cf++ == 0) return(1); } return(0); }