summaryrefslogtreecommitdiff
path: root/src/node.h
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-07-27 21:35:54 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2015-07-27 21:35:54 -0700
commit62cb38bf8a826125fba0034221343aa70dd3d415 (patch)
tree67348fa88068e1fdb2fca04d74c0ce60072bd280 /src/node.h
parentaca7161e53ec40f6979d024d84afeb36fa911292 (diff)
Use clang-format, llvm style, for formatting.
* Reformatted all source files. * Added 'format' target to Makefile. * Removed 'astyle' target. * Updated .editorconfig.
Diffstat (limited to 'src/node.h')
-rw-r--r--src/node.h95
1 files changed, 47 insertions, 48 deletions
diff --git a/src/node.h b/src/node.h
index b579408..48d12df 100644
--- a/src/node.h
+++ b/src/node.h
@@ -13,68 +13,67 @@ extern "C" {
#include "chunk.h"
typedef struct {
- cmark_list_type list_type;
- int marker_offset;
- int padding;
- int start;
- cmark_delim_type delimiter;
- unsigned char bullet_char;
- bool tight;
+ cmark_list_type list_type;
+ int marker_offset;
+ int padding;
+ int start;
+ cmark_delim_type delimiter;
+ unsigned char bullet_char;
+ bool tight;
} cmark_list;
typedef struct {
- cmark_chunk info;
- cmark_chunk literal;
- int fence_length;
- /* fence_offset must be 0-3, so we can use int8_t */
- int8_t fence_offset;
- unsigned char fence_char;
- bool fenced;
+ cmark_chunk info;
+ cmark_chunk literal;
+ int fence_length;
+ /* fence_offset must be 0-3, so we can use int8_t */
+ int8_t fence_offset;
+ unsigned char fence_char;
+ bool fenced;
} cmark_code;
typedef struct {
- int level;
- bool setext;
+ int level;
+ bool setext;
} cmark_header;
typedef struct {
- cmark_chunk url;
- cmark_chunk title;
+ cmark_chunk url;
+ cmark_chunk title;
} cmark_link;
struct cmark_node {
- struct cmark_node *next;
- struct cmark_node *prev;
- struct cmark_node *parent;
- struct cmark_node *first_child;
- struct cmark_node *last_child;
-
- void *user_data;
-
- int start_line;
- int start_column;
- int end_line;
- int end_column;
-
- cmark_node_type type;
-
- bool open;
- bool last_line_blank;
-
- cmark_strbuf string_content;
-
- union {
- cmark_chunk literal;
- cmark_list list;
- cmark_code code;
- cmark_header header;
- cmark_link link;
- int html_block_type;
- } as;
+ struct cmark_node *next;
+ struct cmark_node *prev;
+ struct cmark_node *parent;
+ struct cmark_node *first_child;
+ struct cmark_node *last_child;
+
+ void *user_data;
+
+ int start_line;
+ int start_column;
+ int end_line;
+ int end_column;
+
+ cmark_node_type type;
+
+ bool open;
+ bool last_line_blank;
+
+ cmark_strbuf string_content;
+
+ union {
+ cmark_chunk literal;
+ cmark_list list;
+ cmark_code code;
+ cmark_header header;
+ cmark_link link;
+ int html_block_type;
+ } as;
};
-CMARK_EXPORT int
-cmark_node_check(cmark_node *node, FILE *out);
+CMARK_EXPORT int cmark_node_check(cmark_node *node, FILE *out);
#ifdef __cplusplus
}