Lines Matching refs:longopts
114 struct longopts {
115 struct longopts *next;
127 struct longopts *longopts;
189 struct longopts *lo;
193 for (lo = gof->longopts; lo->opt != opt; lo = lo->next);
271 // longopts only come at the start of the string.)
274 struct longopts *lo;
280 // init a new struct longopts
281 lo = xmalloc(sizeof(struct longopts));
282 lo->next = gof->longopts;
286 gof->longopts = lo;
417 struct longopts *lo;
427 for (lo = gof.longopts; lo; lo = lo->next) {
502 llist_traverse(gof.longopts, free);