Home | History | Annotate | Download | only in src

Lines Matching defs:next

60   struct text_struct *next; // Link to next line, NULL if end of list
229 f->next = NULL;
402 tail->next = malloc(sizeof(text_t));
403 tail = tail->next;
434 // set the next pointer at the end
437 tail->next = NULL;
497 // advance to the next line
498 p = p->next;
515 p = p->next;
529 p = p->next;
545 p = p->next;
576 p = p->next;
643 c->next = NULL;
682 files = files->next;
693 // next follow the directories to the root
699 if(f == NULL) return; // fail if the next part of the path couldn't be found
759 files = files->next;
766 // move to next folder/file
850 (*t)->next = malloc(sizeof(text_t));
851 (*t) = (*t)->next;