Home
last modified time | relevance | path

Searched refs:wholepath (Results 1 – 1 of 1) sorted by relevance

/reactos/base/shell/cmd/
H A Dmove.c65 void GetDirectory (LPTSTR wholepath, LPTSTR directory, BOOL CheckExisting) in GetDirectory() argument
71 if (CheckExisting && IsExistingDirectory(wholepath)) in GetDirectory()
73 _tcscpy(directory, wholepath); in GetDirectory()
75 else if ((last = _tcsrchr(wholepath,_T('\\'))) != NULL) in GetDirectory()
77 _tcsncpy(directory, wholepath, last - wholepath + 1); in GetDirectory()
78 directory[last - wholepath + 1] = 0; in GetDirectory()
82 GetRootPath(wholepath,directory, MAX_PATH); in GetDirectory()