Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. /*
  2.  * This file is part of LibCSS.
  3.  * Licensed under the MIT License,
  4.  *                http://www.opensource.org/licenses/mit-license.php
  5.  * Copyright 2009 John-Mark Bell <jmb@netsurf-browser.org>
  6.  */
  7.  
  8. #ifndef css_css__parse_important_h_
  9. #define css_css__parse_important_h_
  10.  
  11. #include "stylesheet.h"
  12. #include "parse/language.h"
  13.  
  14. css_error css__parse_important(css_language *c,
  15.                 const parserutils_vector *vector, int *ctx,
  16.                 uint8_t *result);
  17.  
  18. void css__make_style_important(css_style *style);
  19.  
  20. #endif
  21.