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 5a824be4 2021-07-13 op extern const char *about_about;
21 5a824be4 2021-07-13 op extern const char *about_blank;
22 5a824be4 2021-07-13 op extern const char *about_help;
23 5a824be4 2021-07-13 op extern const char *about_new;
24 5a824be4 2021-07-13 op
25 5a824be4 2021-07-13 op #define CANNOT_FETCH 0
26 5a824be4 2021-07-13 op #define TOO_MUCH_REDIRECTS 1
27 5a824be4 2021-07-13 op #define MALFORMED_RESPONSE 2
28 5a824be4 2021-07-13 op #define UNKNOWN_TYPE_OR_CSET 3
29 5a824be4 2021-07-13 op extern const char *err_pages[70];
30 5a824be4 2021-07-13 op
31 5a824be4 2021-07-13 op #endif