Exemple #1
0
_WCRTLINK int chdir( const CHAR_TYPE *path )
{
    if ( RdosSetCurDir( path ))
        return 0;
    else
        return 1;
}
Exemple #2
0
_WCRTLINK int chdir( const char *path )
{
    if( RdosSetCurDir( path ) ) {
        return 0;
    } else {
        return 1;
    }
}