diff options
Diffstat (limited to 'src/html.hh')
-rw-r--r-- | src/html.hh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/html.hh b/src/html.hh index 5b18c1a8..ef1187ff 100644 --- a/src/html.hh +++ b/src/html.hh @@ -1,3 +1,15 @@ +/* + * File: html.hh + * + * Copyright (C) 2005-2009 Jorge Arellano Cid <jcid@dillo.org> + * Copyright (C) 2024 Rodrigo Arias Mallo <rodarima@gmail.com> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + */ + #ifndef __HTML_HH__ #define __HTML_HH__ @@ -7,6 +19,10 @@ extern "C" { #endif /* __cplusplus */ +/* Keep in sync with the length of the Tags array. It is protected by an + * static assert in html.cc to prevent errors) */ +#define HTML_NTAGS 93 + /* * Exported functions */ |