diff --git a/LList.h b/LList.h new file mode 100644 index 0000000..0ed5eff --- /dev/null +++ b/LList.h @@ -0,0 +1,28 @@ +/* + LinkedList.h - V1.1 - Generic LinkedList implementation + Works better with FIFO, because LIFO will need to + search the entire List to find the last one; + + For instructions, go to https://github.com/ivanseidel/LinkedList + + Created by Ivan Seidel Gomes, March, 2013. + Released into the public domain. +*/ + +/* + This is a namespace wrapper to avoid collision with ESP Async WebServer's LinkedList class + include it instead of and use Class types - LList, LNode +*/ + +#ifndef LList_h +#define LList_h +#include + +namespace LL{ +#include +} + + +template using LNode = LL::ListNode; +template using LList = LL::LinkedList; +#endif \ No newline at end of file