blob: fbb2abf2851e75ad66ff05832c3d8bca2cce2c8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//
// Debug visualization of matches
//
#ifndef EXPLAIN__H
#define EXPLAIN__H
#include "match.h"
__attribute__((nonnull))
void explain_match(match_t *m);
#endif
// vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1,\:0
|