Blame


1 f26f1205 2022-02-09 op /*
2 f26f1205 2022-02-09 op * Copyright (c) 2021 Omar Polo <op@omarpolo.com>
3 f26f1205 2022-02-09 op *
4 f26f1205 2022-02-09 op * Permission to use, copy, modify, and distribute this software for any
5 f26f1205 2022-02-09 op * purpose with or without fee is hereby granted, provided that the above
6 f26f1205 2022-02-09 op * copyright notice and this permission notice appear in all copies.
7 f26f1205 2022-02-09 op *
8 f26f1205 2022-02-09 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 f26f1205 2022-02-09 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 f26f1205 2022-02-09 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 f26f1205 2022-02-09 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 f26f1205 2022-02-09 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 f26f1205 2022-02-09 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 f26f1205 2022-02-09 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 f26f1205 2022-02-09 op */
16 f26f1205 2022-02-09 op
17 f26f1205 2022-02-09 op #ifndef PAGES_H
18 f26f1205 2022-02-09 op #define PAGES_H
19 f26f1205 2022-02-09 op
20 f26f1205 2022-02-09 op #include <stddef.h>
21 f26f1205 2022-02-09 op #include <stdint.h>
22 f26f1205 2022-02-09 op
23 f26f1205 2022-02-09 op extern const uint8_t about_about[];
24 f26f1205 2022-02-09 op extern size_t about_about_len;
25 f26f1205 2022-02-09 op
26 f26f1205 2022-02-09 op extern const uint8_t about_blank[];
27 f26f1205 2022-02-09 op extern size_t about_blank_len;
28 f26f1205 2022-02-09 op
29 f26f1205 2022-02-09 op extern const uint8_t about_crash[];
30 f26f1205 2022-02-09 op extern size_t about_crash_len;
31 f26f1205 2022-02-09 op
32 f26f1205 2022-02-09 op extern const uint8_t about_help[];
33 f26f1205 2022-02-09 op extern size_t about_help_len;
34 f26f1205 2022-02-09 op
35 f26f1205 2022-02-09 op extern const uint8_t about_license[];
36 f26f1205 2022-02-09 op extern size_t about_license_len;
37 f26f1205 2022-02-09 op
38 f26f1205 2022-02-09 op extern const uint8_t about_new[];
39 f26f1205 2022-02-09 op extern size_t about_new_len;
40 f26f1205 2022-02-09 op
41 f26f1205 2022-02-09 op extern const uint8_t bookmarks[];
42 f26f1205 2022-02-09 op extern size_t bookmarks_len;
43 f26f1205 2022-02-09 op
44 f26f1205 2022-02-09 op #endif