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 Hubbub.
  3.  * Licensed under the MIT License,
  4.  *                http://www.opensource.org/licenses/mit-license.php
  5.  * Copyright 2007 John-Mark Bell <jmb@netsurf-browser.org>
  6.  */
  7.  
  8. #ifndef hubbub_tokeniser_entities_h_
  9. #define hubbub_tokeniser_entities_h_
  10.  
  11. #include <inttypes.h>
  12.  
  13. #include <hubbub/errors.h>
  14. #include <hubbub/functypes.h>
  15.  
  16. /* Step-wise search for an entity in the dictionary */
  17. hubbub_error hubbub_entities_search_step(uint8_t c, uint32_t *result,
  18.                 int32_t *context);
  19.  
  20. #endif
  21.