]> Pileus Git - ~andy/aweather-web/blob - html.h
XHTML Strict fixes
[~andy/aweather-web] / html.h
1 /* Types */
2 typedef struct {
3         const char *link;
4         const char *name;
5         void (*print)(void);
6 } page_t;
7
8 /* Data */
9 extern page_t header[];
10 extern page_t grits[];
11 extern page_t footer[];
12 extern page_t special[];
13
14 /* Global functions */
15 void print_header(void);
16 void print_page(const page_t *which);
17
18 /* Pages */
19 void print_about(void);
20 void print_news(void);
21 void print_screenshots(void);
22 void print_download(void);
23 void print_development(void);
24 void print_grits(void);
25
26 void print_contact(void);
27 void print_legal(void);
28
29 void print_index(void);
30 void print_notfound(void);