File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -729,7 +729,7 @@ struct xml_document* xml_open_document(FILE* source) {
729729/**
730730 * [PUBLIC API]
731731 */
732- void xml_document_free (struct xml_document * document , _Bool free_buffer ) {
732+ void xml_document_free (struct xml_document * document , bool free_buffer ) {
733733 xml_node_free (document -> root );
734734
735735 if (free_buffer ) {
Original file line number Diff line number Diff line change 2929 */
3030#include <stdint.h>
3131#include <string.h>
32+ #include <stdbool.h>
3233
3334#ifdef __cplusplus
3435extern "C" {
@@ -86,7 +87,7 @@ struct xml_document* xml_open_document(FILE* source);
8687 * @param free_buffer iff true the internal buffer supplied via xml_parse_buffer
8788 * will be freed with the `free` system call
8889 */
89- void xml_document_free (struct xml_document * document , _Bool free_buffer );
90+ void xml_document_free (struct xml_document * document , bool free_buffer );
9091
9192
9293/**
You can’t perform that action at this time.
0 commit comments