This commit is contained in:
Nikola Petrov
2023-08-15 16:54:08 +02:00
parent 43fda0a392
commit 6d9404b9b5
6 changed files with 97 additions and 105 deletions

View File

@@ -2,12 +2,12 @@
enum class Glob_Result {
OOM_ERROR,
ENCODING_ERROR,
SYNTAX_ERROR,
UNMATCHED,
MATCHED,
} ;
OOM_ERROR,
ENCODING_ERROR,
SYNTAX_ERROR,
UNMATCHED,
MATCHED,
};
// https://github.com/tsoding/glob.h
Glob_Result glob(const char* pattern, const char* text);