Lines Matching refs:fcol
144 new_field(int rows, int cols, int frow, int fcol, int nrow, int nbuf) in new_field() argument
156 if (rows > 0 && cols > 0 && frow >= 0 && fcol >= 0 && nrow >= 0 && in new_field()
163 f->fcol = fcol; in new_field()
191 dup_field(FIELD *field, int frow, int fcol) in dup_field() argument
200 if (field && frow >= 0 && fcol >= 0 && Alloc(f, FIELD)) { in dup_field()
204 f->fcol = fcol; in dup_field()
240 link_field(FIELD *field, int frow, int fcol) in link_field() argument
248 if (field && frow >= 0 && fcol >= 0 && Alloc(f, FIELD)) { in link_field()
252 f->fcol = fcol; in link_field()
312 field_info(FIELD *f, int *rows, int *cols, int *frow, int *fcol, in field_info() argument
329 *fcol = f->fcol; in field_info()
390 move_field(FIELD *f, int frow, int fcol) in move_field() argument
396 if (! f || frow < 0 || fcol < 0) in move_field()
403 f->fcol = fcol; in move_field()