diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2021-05-06 17:45:01 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-06 17:45:01 -0400 |
commit | c967ce981c2bedc23f0cd614ea7a3b108d009365 (patch) | |
tree | 29640d70b2259152ee6abe080f1049b767ead2e8 /include | |
parent | be932c2f558b535ba2c2d10bf6d0df68040a1821 (diff) | |
download | cleanpath-c967ce981c2bedc23f0cd614ea7a3b108d009365.tar.gz |
Add windows (#3)
* Add windows support
Diffstat (limited to 'include')
-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 { |