Hello
This code is source file of list. generally List means the number of items. I want to understand what is use of this program ? why do we need this source file ?
what is List in program
This code is source file of list. generally List means the number of items. I want to understand what is use of this program ? why do we need this source file ?
Code:
#include <stdlib.h> #include "FreeRTOS.h" #include "list.h" void vListInitialise( xList * const pxList ) { /* The list structure contains a list item which is used to mark the end of the list. To initialise the list the list end is inserted as the only list entry. */ pxList->pxIndex = ( xListItem * )...