aboutsummaryrefslogtreecommitdiff
path: root/lib/patterns/match_type.h
blob: f85f18624786d70d39e8716c9efc031331263554 (plain)
1
2
3
4
5
6
7
8
9
// A datatype used for pattern match results

#pragma once

typedef struct {
    Text_t text;
    Int_t index;
    List_t captures;
} XMatch;