Add wmkdir function

darcs-hash:20060908141128-ac50b-9b67d1c5af9f746be18509bad3a0e8988efce29a.gz
This commit is contained in:
axel 2006-09-09 00:11:28 +10:00
parent eafa0a7169
commit 6107d63995
2 changed files with 9 additions and 0 deletions

View file

@ -544,3 +544,8 @@ wchar_t *wgetenv( const wchar_t *name )
}
int wmkdir( const wchar_t *name, int mode )
{
char *name_narrow =wutil_wcs2str(name);
return mkdir( name_narrow, mode );
}

View file

@ -133,5 +133,9 @@ const wchar_t *wgettext( const wchar_t *in );
*/
wchar_t *wgetenv( const wchar_t *name );
/**
Wide character version of mkdir
*/
int wmkdir( const wchar_t *dir, int mode );
#endif