diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2021-05-06 17:21:47 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2021-05-06 17:21:47 -0400 |
commit | 008ebd1262268cf1c9a4bbdc0bf78d5c11cd5b1d (patch) | |
tree | 2beee75883d125917148ea4e7b29084642fb3b4f /include/cleanpath.h | |
parent | 9664dec490808a834ca009ac293eca9ef25a6e8e (diff) | |
download | cleanpath-008ebd1262268cf1c9a4bbdc0bf78d5c11cd5b1d.tar.gz |
Disable regex on windows
Diffstat (limited to 'include/cleanpath.h')
-rw-r--r-- | include/cleanpath.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/cleanpath.h b/include/cleanpath.h index 6d50db4..b2d21f4 100644 --- a/include/cleanpath.h +++ b/include/cleanpath.h @@ -35,10 +35,13 @@ #define CLEANPATH_PART_MAX 1024 #define CLEANPATH_VAR "PATH" #define CLEANPATH_SEP ":" +#define CLEANPATH_MSG_NOAVAIL "" #if OS_WINDOWS #undef CLEANPATH_SEP #define CLEANPATH_SEP ";" +#undef CLEANPATH_MSG_NOAVAIL +#define CLEANPATH_MSG_NOAVAIL " [not implemented] " #endif struct CleanPath { |