Home | History | Annotate | Download | only in src

Lines Matching refs:drive

1810  * These functions will always prefix the path with a DOS drive in the
1811 * form "<drive-letter>:". As such, these functions are only suitable
1844 char* drive;
1853 drive = getenv ("_XBASEDRIVE");
1854 if (!drive)
1855 drive = "C:";
1856 len = strlen (drive) + strlen (path);
1859 strcpy (bufp, drive);
1867 drive = getenv ("HOMEDRIVE");
1868 if (drive) {
1869 len = strlen (drive) + strlen (path);
1872 strcpy (bufp, drive);