Added binary and unicode file i/o support to msvcrt.
[reactos.git] / reactos / lib / msvcrt / direct / chdir.c
1 #include <windows.h>
2 #include <msvcrt/ctype.h>
3 #include <msvcrt/direct.h>
4
5
6 int _chdir(const char* _path)
7 {
8 if (_path[1] == ':')
9 _chdrive(tolower(_path[0] - 'a')+1);
10 if (!SetCurrentDirectoryA((char*)_path))
11 return -1;
12 return 0;
13 }