A tiny, well‑typed PHP library implementing a sorted singly linked list that stores either integers or strings (but never a mix). The list maintains ascending order on every insertion.
Review linked_list.h and implement those functions in linked_list.c Ensure that your code compiles with no warnings nor errors. Pass functional tests by running the function test suite. You can do ...