Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for splitDrive (0.15 sec)

  1. src/debug/dwarf/line.go

    	// whether it's a DOS path reasonably reliably by looking for
    	// a drive letter or UNC path.
    	drive, dirname := splitDrive(dirname)
    	if drive == "" {
    		// UNIX-style path.
    		return path.Join(dirname, filename)
    	}
    	// DOS-style path.
    	drive2, filename := splitDrive(filename)
    	if drive2 != "" {
    		if !strings.EqualFold(drive, drive2) {
    			// Different drives. There's not much we can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 23.5K bytes
    - Viewed (0)
Back to top