1 // A datatype used for pattern match results 2 3 #pragma once 4 5 typedef struct { 6 Text_t text; 7 Int_t index; 8 List_t captures; 9 } XMatch;