ivanseidel / LinkedList

🔗 A fully implemented LinkedList made to work with general Microcontrollers and Arduino projects
MIT License
347 stars 120 forks source link

fixed unshift: root reset #2

Closed rajeeves closed 10 years ago

rajeeves commented 10 years ago

Now the root pointer is actually set to the new head node. Previously there was an annoying bug that meant the LinkedList never actually had any nodes added on with unshift().

ivanseidel commented 10 years ago

Thanks!