utilitiec/src/regex/compile.h
2024-06-13 15:28:21 +02:00

8 lines
165 B
C

#ifndef UTILITIEC_REGEX_COMPILE_H
#define UTILITIEC_REGEX_COMPILE_H
#include "regex_struct.h"
int Internal_Regex_Compile(Regex* regex, StringView source);
#endif