#include #include #include "linked_list.h" int main(){ // should I make it so that when you make a node you have to first initialize it with a value? // this means that we essentially can not have an empty list. // NULL will count as an empty list struct node* ll = init_ll(1); /* prepend_ll(&ll, 1); */ printf("%d\n",count_ll(ll)); print_ll(ll); /* delete_node(&ll,0); */ /* printf("%d\n",count_ll(ll)); */ free_ll(ll); return 0; }