Searched refs:fldtab (Results 1 – 3 of 3) sorted by relevance
42 Cell **fldtab; /* pointers to Cells */ variable62 || (fldtab = (Cell **) malloc((nfields+1) * sizeof(Cell *))) == NULL in recinit()63 || (fldtab[0] = (Cell *) malloc(sizeof(Cell))) == NULL ) in recinit()65 *fldtab[0] = dollar0; in recinit()66 fldtab[0]->sval = record; in recinit()67 fldtab[0]->nval = tostring("0"); in recinit()77 fldtab[i] = (Cell *) malloc(sizeof (struct Cell)); in makefields()78 if (fldtab[i] == NULL) in makefields()80 *fldtab[i] = dollar1; in makefields()82 fldtab[i]->nval = tostring(temp); in makefields()[all …]
394 extern Cell **fldtab; in getline()423 setsval(fldtab[0], buf); in getline()424 if (is_number(fldtab[0]->sval)) { in getline()425 fldtab[0]->fval = atof(fldtab[0]->sval); in getline()426 fldtab[0]->tval |= NUM; in getline()
68 extern Cell **fldtab;