1- Follow instructions in link below to install conda:
https://docs.conda.io/projects/conda/en/latest/user-guide/install/linux.html
2- Kill and reopen terminal
3- Run the following:
1- Follow instructions in link below to install conda:
https://docs.conda.io/projects/conda/en/latest/user-guide/install/linux.html
2- Kill and reopen terminal
3- Run the following:
#include <stdlib.h> | |
#include <string.h> | |
#include <assert.h> | |
#include "list.h" | |
void list_new(list *list, int elementSize, freeFunction freeFn) | |
{ | |
assert(elementSize > 0); | |
list->logicalLength = 0; |