Example #1
0
_WCRTLINK int mkdir( const CHAR_TYPE *path )
{
    if( RdosMakeDir( path ))
        return 0;
    else
        return -1;
}
Example #2
0
_WCRTLINK int mkdir( const char *path )
{
    if( RdosMakeDir( path ) ) {
        return 0;
    } else {
        return -1;
    }
}