diff options
author | Rob Landley <rob@landley.net> | 2012-03-12 00:25:40 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2012-03-12 00:25:40 -0500 |
commit | 2c48247a01a19c709f693d649d8158bccb5fbf70 (patch) | |
tree | 53297abe89d56a745d1d9a9ddec161fc1adbae24 /lib/lib.h | |
parent | 9f4c1fd2de1b525b7638a79a8294f8d5b865bcc5 (diff) | |
download | toybox-2c48247a01a19c709f693d649d8158bccb5fbf70.tar.gz |
Redo tail to use optargs and optionally support lseek. Add support to optargs and llist.c, plus add a test suite entry. Still no -f support though.
Diffstat (limited to 'lib/lib.h')
-rw-r--r-- | lib/lib.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -35,6 +35,7 @@ struct double_list { void llist_free(void *list, void (*freeit)(void *data)); void *llist_pop(void *list); // actually void **list, but the compiler's dumb +void dlist_add_nomalloc(struct double_list **list, struct double_list *new); struct double_list *dlist_add(struct double_list **list, char *data); // args.c |