eb8061dbe35e148f8efa8b8bb51341c265d0298b
[reactos.git] / 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 }