Add tests for the subseq matcher

This commit is contained in:
Kovid Goyal
2019-01-24 20:52:18 +05:30
parent edb25314c5
commit 60b64dadfe
6 changed files with 155 additions and 27 deletions

View File

@@ -6,10 +6,7 @@
#pragma once
#include <Python.h>
#define MAX(x, y) ((x) > (y) ? (x) : (y))
#define MIN(x, y) ((x) < (y) ? (x) : (y))
#include "data-types.h"
#define REPORT_OOM global->oom = 1;