Lines Matching defs:pos
13 long pos)
18 if (pos > catch->len) error_exit("linestack_addstack past end.");
25 memcpy(*lls, catch, sizeof(struct linestack)+pos*sizeof(struct ptr_len));
29 if (pos != catch->len)
30 memmove((*lls)->idx+pos+throw->len, catch->idx+pos,
31 (catch->len-pos)*sizeof(struct ptr_len));
40 memcpy(catch->idx+pos, throw->idx, throw->len*sizeof(struct ptr_len));
44 // Insert one line/len into a linestack at pos
45 void linestack_insert(struct linestack **lls, long pos, char *line, long len)
58 linestack_addstack(lls, &ls.ls, pos);