Does anyone know tutorials for link list to be able
insert,delete,cout list,give id and time
void list_insert( UINT time, UINT id, UINT event)
{
}
void list_head_delete()
{
}
UINT list_head_event()
{
work_ptr = list_head;
if(work_ptr == NULL)
{
return 0;
}
else{
printf("Should print the list head \n");
return list_head->event;
}
}
UINT list_head_id()
{}
UINT list_head_time()
{}
Im so lost