From fe7bf4702f6047522d8e3477baf9c48b33aaeee7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20M=C3=BCller?= <sandro18@zedat.fu-berlin.de> Date: Fri, 14 Apr 2017 10:11:28 +0000 Subject: [PATCH] Upload new file --- struct.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 struct.h diff --git a/struct.h b/struct.h new file mode 100644 index 0000000..e806f15 --- /dev/null +++ b/struct.h @@ -0,0 +1,16 @@ +#ifndef STRUCT_H +#define STRUCT_H + + +struct Node{ + int data; + struct Node* next; +}; + + +struct Node* newFUNC (int data); +struct Node* insert (struct Node* head, int data); +void myPrint(struct Node* head);void replace(struct Node* head, int pos, int elem); +void replace(struct Node* head, int pos, int elem); + +#endif /* STRUCT_H */ -- GitLab