aboutsummaryrefslogtreecommitdiffhomepage
path: root/wutil.h
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-02-03 01:23:56 +1000
committerGravatar axel <axel@liljencrantz.se>2006-02-03 01:23:56 +1000
commit06fd1aa9f8aa2d9705ba942055c76518fb1da1f6 (patch)
tree4a6d3e47b2b282d3b376ae31dbc02fae0a8f145f /wutil.h
parent5942a6d6c193f6d985d9f4eaada7c8113a40d1c0 (diff)
Make stack traces print absolute filenames
darcs-hash:20060202152356-ac50b-9e6ab31c03d5f49824ccca7eee3b8e62d66b0009.gz
Diffstat (limited to 'wutil.h')
-rw-r--r--wutil.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/wutil.h b/wutil.h
index 72a8b2ab..1d504937 100644
--- a/wutil.h
+++ b/wutil.h
@@ -81,6 +81,14 @@ wchar_t *wgetcwd( wchar_t *buff, size_t sz );
*/
int wchdir( const wchar_t * dir );
+/**
+ Wide character verion of realpath function. Just like the GNU
+ version of realpath, wrealpath will accept 0 as the value for the
+ second argument, in which case the result will be allocated using
+ malloc, and must be free'd by the user.
+*/
+wchar_t *wrealpath(const wchar_t *pathname, wchar_t *resolved_path);
+
/*
Here follows the prototypes for fallback implementations of various
standarcs libc functions relating to wide character support. Some of