SoorajModi / DataStructures

Data Structures written in C
MIT License
0 stars 0 forks source link

Make APIs independent #6

Open SoorajModi opened 3 years ago

SoorajModi commented 3 years ago

Currently, StackAPI and QueueAPI depend on LinkedListAPI. However, we should make each of the APIs independent so a user does not have to add multiple files in order to use those APIs.

APIs that use other APIs for their functionality (ie. HashmapAPI) are fine to remain as they are.