cygwin_split_path
#include <sys/cygwin.h>
void cygwin_split_path (const char * path, char * dir, char * file);
void cygwin_split_path (
)
Split a path into the directory and the file portions. Both dir and file are expected to point to buffers of sufficient size.
dir
file
Example 2.2. Example use of cygwin_split_path
char dir[200], file[100]; cygwin_split_path("c:/foo/bar.c", dir, file); printf("dir=%s, file=%s\n", dir, file);