We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5195fcf commit d546ba9Copy full SHA for d546ba9
Chapter18/linkedlisttester.c
@@ -1,14 +1,17 @@
1
// linkedlisttester.c
2
// Chapter 18
3
-// <book title>
+// Learn C Programming
4
//
5
// Demonstrate how to
6
// 1) define structures for a linked list
7
// 2) define operations on that linked list
8
// 3) fully exercise (test) the link list implementation
9
10
-// compile with: cc linkedlisttester.c -o linkedlisttester -Wall -Werror -std=c11
+// compile with:
11
+//
12
+// cc linkedlisttester.c -o linkedlisttester -Wall -Werror -std=c11
13
14
+
15
#include <stdio.h>
16
#include <stdlib.h>
17
#include <stdbool.h>
0 commit comments