Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for commandLineToArgv (0.12 sec)

  1. src/os/exec_windows.go

    		nslash = 0
    		b = append(b, c)
    	}
    	return appendBSBytes(b, nslash), ""
    }
    
    // commandLineToArgv splits a command line into individual argument
    // strings, following the Windows conventions documented
    // at http://daviddeley.com/autohotkey/parameters/parameters.htm#WINARGV
    func commandLineToArgv(cmd string) []string {
    	var args []string
    	for len(cmd) > 0 {
    		if cmd[0] == ' ' || cmd[0] == '\t' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top