bookloupe/pending.h
author ali@harlow.me.uk
Thu Sep 26 07:03:31 2013 +0100 (2013-09-26)
changeset 115 df21841a2b64
child 111 f805130deb6f
child 123 ddb5ddba6ef3
permissions -rw-r--r--
Bug #14: Temporary hack to display file path
     1 #ifndef PENDING_H
     2 #define PENDING_H
     3 
     4 #include "counters.h"
     5 
     6 struct pending_warning {
     7     char *queried_line;
     8     char *warning_text;
     9 };
    10 
    11 struct pending {
    12     char *dquote,*squote,*rbrack,*sbrack,*cbrack,*unders;
    13     long squot;
    14     struct pending_warning illustration;
    15 };
    16 
    17 void print_pending(const char *aline,const char *parastart,
    18   struct pending *pending);
    19 void reset_pending(struct pending *pending);
    20 void check_for_mismatched_quotes(const struct counters *counters,
    21   struct pending *pending);
    22 
    23 #endif /* PENDING_H */