md4c

C Markdown parser. Fast. SAX-like interface. Compliant to CommonMark specification.
git clone https://noulin.net/git/md4c.git
Log | Files | Refs | README | LICENSE

commit 591b2d21ba75922acc07431fd366fbdd5537324f
parent 61d38ef41e7f9efd6f7c3e883d58ef57a6ce259c
Author: Martin Mitas <mity@morous.org>
Date:   Tue, 25 Jul 2017 00:08:51 +0200

md_analyze_marks: Make the function inline.

Diffstat:
Mmd4c/md4c.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/md4c/md4c.c b/md4c/md4c.c @@ -3685,7 +3685,7 @@ md_analyze_permissive_email_autolink(MD_CTX* ctx, int mark_index) md_resolve_range(ctx, NULL, mark_index, closer_index); } -static void +static inline void md_analyze_marks(MD_CTX* ctx, const MD_LINE* lines, int n_lines, int mark_beg, int mark_end, const CHAR* mark_chars) {