summaryrefslogtreecommitdiff
path: root/src/util/realpath.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/realpath.c')
-rw-r--r--src/util/realpath.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/util/realpath.c b/src/util/realpath.c
new file mode 100644
index 0000000..abeebaa
--- /dev/null
+++ b/src/util/realpath.c
@@ -0,0 +1,29 @@
+/*
+ * Copyright © 2019 Jon Turney.
+ *
+ * Permission to use, copy, modify, and distribute this software for any
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS" AND TODD C. MILLER DISCLAIMS ALL
+ * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL TODD C. MILLER BE LIABLE
+ * FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
+ * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
+ * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include "src/util/replace.h"
+
+#ifdef WIN32
+char *
+realpath(const char *path, char *resolved_path)
+{
+ return _fullpath(resolved_path, path, _MAX_PATH);
+}
+#endif