Inactive Tutor answered 08/08/21
_LAST is the last node in the list;
_FIRST is the first node in the list;
Simply do:
_LIST->next = NULL
_FIRST->prev=NULL
you may now treat it as a doubly linked list, that is NOT circular,
as the links which make it circle have been broken (set to NULL)
Why would one want to sacrifice this type of nice feature ?