update for HEAD-2003021201
[reactos.git] / lib / crtdll / direct / getdcwd.c
index 0b2a8b5..bbf79fd 100644 (file)
@@ -1,23 +1,19 @@
 #include <windows.h>
-#include <crtdll/direct.h>
+#include <msvcrt/direct.h>
 
-char* _getdcwd (int nDrive, char* caBuffer, int nBufLen)
+char* _getdcwd(int nDrive, char* caBuffer, int nBufLen)
 {
-       int i =0;
-       int dr = _getdrive();
-       
-       if ( nDrive < 1 || nDrive > 26 )
-               return NULL;
-       
-       if ( dr != nDrive )
-               _chdrive(nDrive);
-       
-       i = GetCurrentDirectoryA(nBufLen,caBuffer);
-       if ( i  == nBufLen )
-               return NULL;
-       
-       if ( dr != nDrive )
-               _chdrive(dr);
-       
-       return caBuffer;
+    int i =0;
+    int dr = _getdrive();
+
+    if (nDrive < 1 || nDrive > 26)
+        return NULL;
+    if (dr != nDrive)
+        _chdrive(nDrive);
+    i = GetCurrentDirectoryA(nBufLen, caBuffer);
+    if (i  == nBufLen)
+        return NULL;
+    if (dr != nDrive)
+        _chdrive(dr);
+    return caBuffer;
 }