summaryrefslogtreecommitdiff
path: root/src/blocks.c
diff options
context:
space:
mode:
authorNick Wellnhofer <wellnhofer@aevum.de>2014-11-12 18:33:39 +0100
committerNick Wellnhofer <wellnhofer@aevum.de>2014-11-12 19:46:09 +0100
commit6846f65f182b9c927ed8db500341a9f403e8df8e (patch)
tree52cfebc29f6fe9ff9e9c08df059d4e9bbbe41bc2 /src/blocks.c
parent6b262ef85ecf7bda5fbe36d102808475e0c5793d (diff)
Mark some functions as static
Diffstat (limited to 'src/blocks.c')
-rw-r--r--src/blocks.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/blocks.c b/src/blocks.c
index ccb84a7..a70f5f8 100644
--- a/src/blocks.c
+++ b/src/blocks.c
@@ -33,7 +33,7 @@ static node_block* make_block(int tag, int start_line, int start_column)
}
// Create a root document node_block.
-extern node_block* make_document()
+static node_block* make_document()
{
node_block *e = make_block(BLOCK_DOCUMENT, 1, 1);
e->as.document.refmap = reference_map_new();
@@ -43,7 +43,7 @@ extern node_block* make_document()
}
// Returns true if line has only space characters, else false.
-bool is_blank(strbuf *s, int offset)
+static bool is_blank(strbuf *s, int offset)
{
while (offset < s->size) {
switch (s->ptr[offset]) {
@@ -283,7 +283,7 @@ typedef struct BlockStack {
// Walk through node_block and all children, recursively, parsing
// string content into inline content where appropriate.
-void process_inlines(node_block* cur, reference_map *refmap)
+static void process_inlines(node_block* cur, reference_map *refmap)
{
block_stack* stack = NULL;
block_stack* newstack = NULL;