Skip to content

Commit d546ba9

Browse files
authored
update tombstone
1 parent 5195fcf commit d546ba9

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Chapter18/linkedlisttester.c

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
// linkedlisttester.c
22
// Chapter 18
3-
// <book title>
3+
// Learn C Programming
44
//
55
// Demonstrate how to
66
// 1) define structures for a linked list
77
// 2) define operations on that linked list
88
// 3) fully exercise (test) the link list implementation
99
//
10-
// compile with: cc linkedlisttester.c -o linkedlisttester -Wall -Werror -std=c11
10+
// compile with:
11+
//
12+
// cc linkedlisttester.c -o linkedlisttester -Wall -Werror -std=c11
1113
//
14+
1215
#include <stdio.h>
1316
#include <stdlib.h>
1417
#include <stdbool.h>

0 commit comments

Comments
 (0)