ref: 3f5b7b5321154c86309df129b1edc45b89a2c987
parent: c6da73fdd9464580baa8461952480d17e580ae1a
author: LTCHIPS <ltchips994@gmail.com>
date: Mon Jun 11 19:13:45 EDT 2018
Delete LinkedList.h see commit c6da73f for reason why this was removed
--- a/src/LinkedList.h
+++ /dev/null
@@ -1,47 +1,0 @@
-/*
- * File: LinkedList.h
- * Author: LTCHIPS
- *
- * Created on March 19, 2018, 3:40 PM
- */
-
-#ifndef LINKEDLIST_H
-#define LINKEDLIST_H
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-typedef struct listNode
-{
- int key;
- int data;
- struct listNode * next;
-} listNode;
-
-typedef struct LinkedList
-{
- int NumOfItems;
- int IsInit;
- struct listNode * head;
-} LinkedList;
-
-int SearchWithKey(LinkedList *, int);
-
-void InitLinkedList(LinkedList*);
-
-void InsertInList(LinkedList*,int, int);
-
-void DeleteAtIndex(LinkedList*,int);
-
-void DeleteWithKey(LinkedList*,int);
-
-void DestroyList(LinkedList*);
-
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* LINKEDLIST_H */
-