data_structures
|
#include "list.h"
Go to the source code of this file.
Functions | |
void * | list_peek_last (const t_list *alst) |
Returns the last item in the list. More... | |
void* list_peek_last | ( | const t_list * | alst | ) |
Returns the last item in the list.
The item is kept in the list.
NULL
if the list is empty. Definition at line 16 of file list_peek_last.c.