Nikola Petrov 43fda0a392 Added support for glob
thanks to tsoding/glob.h
2023-08-15 00:15:16 +02:00

13 lines
219 B
C

#pragma once
enum class Glob_Result {
OOM_ERROR,
ENCODING_ERROR,
SYNTAX_ERROR,
UNMATCHED,
MATCHED,
} ;
// https://github.com/tsoding/glob.h
Glob_Result glob(const char* pattern, const char* text);