Changeset 181 for libyaml/trunk/include/yaml/yaml.h
- Timestamp:
- 05/30/06 13:49:18 (7 years ago)
- File:
-
- 1 edited
-
libyaml/trunk/include/yaml/yaml.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libyaml/trunk/include/yaml/yaml.h
r180 r181 292 292 */ 293 293 294 /** Error type. */ 294 295 yaml_error_type_t error; 296 297 /** Error description. */ 298 const char *problem; 299 300 /** The byte about which the problem occured. */ 301 size_t problem_offset; 295 302 296 303 /** … … 303 310 */ 304 311 305 /** Read handler */312 /** Read handler. */ 306 313 yaml_read_handler_t *read_handler; 307 314 … … 489 496 #define YAML_BUFFER_SIZE (YAML_RAW_BUFFER_SIZE*3) 490 497 498 /** 499 * Ensure that the buffer contains at least @a length characters. 500 * 501 * @param[in] parser A parser object. 502 * @param[in] length The number of characters in the buffer. 503 * 504 * @returns @c 1 on success, @c 0 on error. 505 */ 506 507 int 508 yaml_parser_update_buffer(yaml_parser_t *parser, size_t length); 509 491 510 /** @} */ 492 511
Note: See TracChangeset
for help on using the changeset viewer.
