From: Fletcher T. Penney Date: Mon, 11 Mar 2019 04:32:17 +0000 (-0400) Subject: UPDATED: Tidy code X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=df1c4dde29ce3de798d2e0e53144ab28a4985e22;p=multimarkdown UPDATED: Tidy code --- diff --git a/Sources/libMultiMarkdown/include/token.h b/Sources/libMultiMarkdown/include/token.h index d1859c7..cc8cbf2 100644 --- a/Sources/libMultiMarkdown/include/token.h +++ b/Sources/libMultiMarkdown/include/token.h @@ -85,6 +85,9 @@ struct token { size_t start; //!< Starting offset in the source string size_t len; //!< Length of the token in the source string + size_t out_start; + size_t out_len; + struct token * next; //!< Pointer to next token in the chain struct token * prev; //!< Pointer to previous marker in the chain struct token * child; //!< Pointer to child chain