summaryrefslogtreecommitdiff
path: root/src/parse/properties/utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse/properties/utils.h')
-rw-r--r--src/parse/properties/utils.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/src/parse/properties/utils.h b/src/parse/properties/utils.h
index 66b706d..e5315bb 100644
--- a/src/parse/properties/utils.h
+++ b/src/parse/properties/utils.h
@@ -5,8 +5,8 @@
* Copyright 2008 John-Mark Bell <jmb@netsurf-browser.org>
*/
-#ifndef css_parse_properties_utils_h_
-#define css_parse_properties_utils_h_
+#ifndef css_css__parse_properties_utils_h_
+#define css_css__parse_properties_utils_h_
#include "parse/language.h"
@@ -36,7 +36,7 @@ enum border_side_e { BORDER_SIDE_TOP = 0, BORDER_SIDE_RIGHT = 1, BORDER_SIDE_BOT
* Post condition: \a *ctx is updated with the next token to process
* If the input is invalid, then \a *ctx remains unchanged.
*/
-css_error parse_border_side(css_language *c,
+css_error css__parse_border_side(css_language *c,
const parserutils_vector *vector, int *ctx,
css_style *result, enum border_side_e side);
@@ -55,7 +55,7 @@ css_error parse_border_side(css_language *c,
* Post condition: \a *ctx is updated with the next token to process
* If the input is invalid, then \a *ctx remains unchanged.
*/
-css_error parse_border_side_color(css_language *c,
+css_error css__parse_border_side_color(css_language *c,
const parserutils_vector *vector, int *ctx,
css_style *result, enum css_properties_e op);
@@ -74,7 +74,7 @@ css_error parse_border_side_color(css_language *c,
* Post condition: \a *ctx is updated with the next token to process
* If the input is invalid, then \a *ctx remains unchanged.
*/
-css_error parse_border_side_style(css_language *c,
+css_error css__parse_border_side_style(css_language *c,
const parserutils_vector *vector, int *ctx,
css_style *result, enum css_properties_e op);
@@ -94,7 +94,7 @@ css_error parse_border_side_style(css_language *c,
* Post condition: \a *ctx is updated with the next token to process
* If the input is invalid, then \a *ctx remains unchanged.
*/
-css_error parse_border_side_width(css_language *c,
+css_error css__parse_border_side_width(css_language *c,
const parserutils_vector *vector, int *ctx,
css_style *result, enum css_properties_e op);
@@ -114,7 +114,7 @@ css_error parse_border_side_width(css_language *c,
* Post condition: \a *ctx is updated with the next token to process
* If the input is invalid, then \a *ctx remains unchanged.
*/
-css_error parse_side(css_language *c,
+css_error css__parse_side(css_language *c,
const parserutils_vector *vector, int *ctx,
css_style *result, enum css_properties_e op);
@@ -133,7 +133,7 @@ css_error parse_side(css_language *c,
* Post condition: \a *ctx is updated with the next token to process
* If the input is invalid, then \a *ctx remains unchanged.
*/
-css_error parse_margin_side(css_language *c,
+css_error css__parse_margin_side(css_language *c,
const parserutils_vector *vector, int *ctx,
css_style *result, enum css_properties_e op);
@@ -151,7 +151,7 @@ css_error parse_margin_side(css_language *c,
* Post condition: \a *ctx is updated with the next token to process
* If the input is invalid, then \a *ctx remains unchanged.
*/
-css_error parse_padding_side(css_language *c,
+css_error css__parse_padding_side(css_language *c,
const parserutils_vector *vector, int *ctx,
css_style *result, enum css_properties_e op);
@@ -161,27 +161,27 @@ css_error parse_padding_side(css_language *c,
-css_error parse_list_style_type_value(css_language *c,
+css_error css__parse_list_style_type_value(css_language *c,
const css_token *token, uint16_t *value);
-css_error parse_colour_specifier(css_language *c,
+css_error css__parse_colour_specifier(css_language *c,
const parserutils_vector *vector, int *ctx,
uint32_t *result);
-css_error parse_named_colour(css_language *c, lwc_string *data,
+css_error css__parse_named_colour(css_language *c, lwc_string *data,
uint32_t *result);
-css_error parse_hash_colour(lwc_string *data, uint32_t *result);
+css_error css__parse_hash_colour(lwc_string *data, uint32_t *result);
-css_error parse_unit_specifier(css_language *c,
+css_error css__parse_unit_specifier(css_language *c,
const parserutils_vector *vector, int *ctx,
uint32_t default_unit,
css_fixed *length, uint32_t *unit);
-css_error parse_unit_keyword(const char *ptr, size_t len,
+css_error css__parse_unit_keyword(const char *ptr, size_t len,
css_unit *unit);
-css_error comma_list_to_style(css_language *c,
+css_error css__comma_list_to_style(css_language *c,
const parserutils_vector *vector, int *ctx,
bool (*reserved)(css_language *c, const css_token *ident),
css_code_t (*get_value)(css_language *c, const css_token *token, bool first),