2002-09-25 08:17:48 +05:30
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include "unarchive.h"
|
|
|
|
#include "libbb.h"
|
|
|
|
|
2002-12-08 06:24:33 +05:30
|
|
|
extern llist_t *llist_add_to(llist_t *old_head, char *new_item)
|
2002-09-25 08:17:48 +05:30
|
|
|
{
|
|
|
|
llist_t *new_head;
|
|
|
|
|
|
|
|
new_head = xmalloc(sizeof(llist_t));
|
|
|
|
new_head->data = new_item;
|
|
|
|
new_head->link = old_head;
|
|
|
|
|
|
|
|
return(new_head);
|
|
|
|
}
|