Issues
Heading
Text here
Examples
Text here
Illustration
Example of how to keep figures in folder.

A Distributed System
Example of how to include source from examples…
1#define WORDLIST_TAILQ_H
2
3TAILQ_HEAD(wordlist_t, wordentry_t);
4
5struct wordentry_t {
6 char* text;
7 TAILQ_ENTRY(wordentry_t) entries;
8};
9
10extern void wordlist_add(struct wordlist_t* head_ptr, char* word);
11
12extern void wordlist_print(struct wordlist_t* head_ptr);
13
14extern void wordlist_delete(struct wordlist_t* head_ptr);
15
16extern void wordlist_init(struct wordlist_t* head_ptr);
17