diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-03-09 17:35:19 +0100 |
---|---|---|
committer | rodarima <rodarima@gmail.com> | 2024-03-09 18:43:51 +0100 |
commit | 4c56214b8c2e130d3709bdca2513aef20b7b0fab (patch) | |
tree | b8cd0c6dafb5850ba116221f6f39a62e84983aa5 /src/cssparser.cc | |
parent | bde09c45adf0daf252fafbaf87683d3ed7eaab07 (diff) |
Use Doxygen comments for C files
Diffstat (limited to 'src/cssparser.cc')
-rw-r--r-- | src/cssparser.cc | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/cssparser.cc b/src/cssparser.cc index b4a6a305..893f595a 100644 --- a/src/cssparser.cc +++ b/src/cssparser.cc @@ -288,11 +288,11 @@ const CssPropertyInfo Css_property_info[CSS_PROPERTY_LAST] = { typedef struct { const char *symbol; enum { - CSS_SHORTHAND_MULTIPLE, /* [ p1 || p2 || ...], the property pi is + CSS_SHORTHAND_MULTIPLE, /**< [ p1 || p2 || ...], the property pi is * determined by the type */ - CSS_SHORTHAND_DIRECTIONS, /* <t>{1,4} */ - CSS_SHORTHAND_BORDER, /* special, used for 'border' */ - CSS_SHORTHAND_FONT, /* special, used for 'font' */ + CSS_SHORTHAND_DIRECTIONS, /**< <t>{1,4} */ + CSS_SHORTHAND_BORDER, /**< special, used for 'border' */ + CSS_SHORTHAND_FONT, /**< special, used for 'font' */ } type; const CssPropertyName *properties; /* CSS_SHORTHAND_MULTIPLE: * must be terminated by @@ -469,7 +469,7 @@ CssParser::CssParser(CssContext *context, CssOrigin origin, nextToken (); } -/* +/** * Gets the next character from the buffer, or EOF. */ int CssParser::getChar() @@ -487,7 +487,7 @@ int CssParser::getChar() return c; } -/* +/** * Undoes the last getChar(). */ void CssParser::ungetChar() @@ -495,7 +495,7 @@ void CssParser::ungetChar() bufptr--; } -/* +/** * Skip string str if it is found in the input buffer. * If string is found leave bufptr pointing to last matched char. * If not wind back. The first char is passed as parameter c @@ -1209,7 +1209,7 @@ bool CssParser::parseWeight() return false; } -/* +/** * bsearch(3) compare function for searching properties */ static int Css_property_info_cmp(const void *a, const void *b) @@ -1219,7 +1219,7 @@ static int Css_property_info_cmp(const void *a, const void *b) } -/* +/** * bsearch(3) compare function for searching shorthands */ static int Css_shorthand_info_cmp(const void *a, const void *b) |