@@ -1,22 +0,0 @@
-/*
- * opuca_linkedList.c
- *
- * Created on: Feb 5, 2014
- * Author: opcua
- */
-
-#include<stdlib.h>
-#include<stdio.h>
-list_add(element *list,element *elementToAdd)
-{
- element *nElement;
- while(list->next != NULL)
- {
- nElement = list->next;
- }
-}