1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/bookloupe/pending.h Mon Sep 23 21:18:27 2013 +0100
1.3 @@ -0,0 +1,23 @@
1.4 +#ifndef PENDING_H
1.5 +#define PENDING_H
1.6 +
1.7 +#include "counters.h"
1.8 +
1.9 +struct pending_warning {
1.10 + char *queried_line;
1.11 + char *warning_text;
1.12 +};
1.13 +
1.14 +struct pending {
1.15 + char *dquote,*squote,*rbrack,*sbrack,*cbrack,*unders;
1.16 + long squot;
1.17 + struct pending_warning illustration;
1.18 +};
1.19 +
1.20 +void print_pending(const char *aline,const char *parastart,
1.21 + struct pending *pending);
1.22 +void reset_pending(struct pending *pending);
1.23 +void check_for_mismatched_quotes(const struct counters *counters,
1.24 + struct pending *pending);
1.25 +
1.26 +#endif /* PENDING_H */