aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@users.noreply.github.com>2021-05-06 17:45:01 -0400
committerGitHub <noreply@github.com>2021-05-06 17:45:01 -0400
commitc967ce981c2bedc23f0cd614ea7a3b108d009365 (patch)
tree29640d70b2259152ee6abe080f1049b767ead2e8 /include
parentbe932c2f558b535ba2c2d10bf6d0df68040a1821 (diff)
downloadcleanpath-c967ce981c2bedc23f0cd614ea7a3b108d009365.tar.gz
Add windows (#3)
* Add windows support
Diffstat (limited to 'include')
-rw-r--r--include/cleanpath.h3
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 {