Enabled -status -jigdo

This commit is contained in:
2010-09-29 16:41:48 +00:00
parent 7280c0c4bc
commit 4269dff2d8
7 changed files with 52 additions and 2 deletions

View File

@ -640,6 +640,16 @@ int Xorriso_lst_detach_text(struct Xorriso_lsT *entry, int flag)
}
int Xorriso_lst_get_last(struct Xorriso_lsT *entry, struct Xorriso_lsT **last,
int flag)
{
*last= NULL;
if(entry != NULL)
for((*last)= entry; (*last)->next != NULL; (*last)= (*last)->next);
return(1);
}
/* --------------------------- End Xorriso_lsT ---------------------------- */