14 lines
209 B
C
14 lines
209 B
C
//
|
|
// Debug visualization of matches
|
|
//
|
|
#ifndef DEBUGVIZ__H
|
|
#define DEBUGVIZ__H
|
|
|
|
#include "types.h"
|
|
|
|
__attribute__((nonnull))
|
|
void visualize_match(match_t *m);
|
|
|
|
#endif
|
|
// vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1
|