Fix include guards in regex and utime
The include_guard in both /src/headers/regex/cbindgen.toml
and /src/headers/regex/utime.toml
was _TEMPLATE_H
, this meant that including both "utime.h" and "regex.h" wasn't possible.
Their header guards should be consistent with the header files as well.
Changed _TEMPLATE_H
to _REGEX_H
and _UTIME_H
in /regex/cbindgen.toml
and /utime/cbindgen.toml
respectively.