diff -r 000000000000 -r 853e8a9ccfc9 bookloupe/pending.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bookloupe/pending.h Tue Sep 24 07:18:50 2013 +0100 @@ -0,0 +1,23 @@ +#ifndef PENDING_H +#define PENDING_H + +#include "counters.h" + +struct pending_warning { + char *queried_line; + char *warning_text; +}; + +struct pending { + char *dquote,*squote,*rbrack,*sbrack,*cbrack,*unders; + long squot; + struct pending_warning illustration; +}; + +void print_pending(const char *aline,const char *parastart, + struct pending *pending); +void reset_pending(struct pending *pending); +void check_for_mismatched_quotes(const struct counters *counters, + struct pending *pending); + +#endif /* PENDING_H */