_splitpath (NTDLL.@)
void _splitpath ( const char* inpath, char* drv, char* dir, char* fname, char* ext )
Split a path into its component pieces.
inpath | [In] | Path to split. |
drv | [Out] | Destination for drive component (e.g. "A:"). Must be at least 3 characters. |
dir | [Out] | Destination for directory component. Should be at least MAX_PATH characters. |
fname | [Out] | Destination for File name component. Should be at least MAX_PATH characters. |
ext | [Out] | Destination for file extension component. Should be at least MAX_PATH characters. |
Nothing.
Declared in "include/tchar.h". gitlab.winehq.org/wine/wine/blob/master/include/tchar.h
Implemented in "dlls/ntdll/string.c". gitlab.winehq.org/wine/wine/blob/master/dlls/ntdll/string.c
Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Nov 2024.