Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 3583 → Rev 3584

/programs/network/netsurf/libcss/src/parse/properties/autogenerated_column_rule_width.c
0,0 → 1,40
/*
* This file was generated by LibCSS gen_parser
*
* Generated from:
*
* column_rule_width:CSS_PROP_COLUMN_RULE_WIDTH WRAP:css__parse_border_side_width
*
* Licensed under the MIT License,
* http://www.opensource.org/licenses/mit-license.php
* Copyright 2010 The NetSurf Browser Project.
*/
 
#include <assert.h>
#include <string.h>
 
#include "bytecode/bytecode.h"
#include "bytecode/opcodes.h"
#include "parse/properties/properties.h"
#include "parse/properties/utils.h"
 
/**
* Parse column_rule_width
*
* \param c Parsing context
* \param vector Vector of tokens to process
* \param ctx Pointer to vector iteration context
* \param result resulting style
* \return CSS_OK on success,
* CSS_NOMEM on memory exhaustion,
* CSS_INVALID if the input is not valid
*
* Post condition: \a *ctx is updated with the next token to process
* If the input is invalid, then \a *ctx remains unchanged.
*/
css_error css__parse_column_rule_width(css_language *c,
const parserutils_vector *vector, int *ctx,
css_style *result)
{
return css__parse_border_side_width(c, vector, ctx, result, CSS_PROP_COLUMN_RULE_WIDTH);
}