Blame


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