diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-10-24 20:22:05 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-10-24 20:26:03 -0700 |
commit | abc95bdfa1fd4f4ffb5b0727aec34791a6e472e5 (patch) | |
tree | 41d7aadcb3a91edd0610da1cd85d9c0a1c02fff7 /src/print.c | |
parent | 7f0d1a80c7871a97dcf6495fba9f0e3c8d86be81 (diff) |
Renamed c program and library stmd -> cmark.
Also renamed internal library functions accordingly.
Diffstat (limited to 'src/print.c')
-rw-r--r-- | src/print.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/print.c b/src/print.c index f3bd8e5..be3bced 100644 --- a/src/print.c +++ b/src/print.c @@ -1,7 +1,7 @@ #include <stdlib.h> #include <stdio.h> #include <string.h> -#include "stmd.h" +#include "cmark.h" #include "debug.h" static void print_str(const unsigned char *s, int len) @@ -170,7 +170,7 @@ static void print_blocks(node_block* b, int indent) } } -void stmd_debug_print(node_block *root) +void cmark_debug_print(node_block *root) { print_blocks(root, 0); } |