Source File
env_posix.go
Belonging Package
runtime
// Copyright 2012 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package runtime
import
func ( string) string {
:= environ()
if == nil {
throw("getenv before env init")
}
for , := range {
if len() > len() && [len()] == '=' && envKeyEqual([:len()], ) {
return [len()+1:]
}
}
return ""
}
// envKeyEqual reports whether a == b, with ASCII-only case insensitivity
// on Windows. The two strings must have the same length.
func (, string) bool {
if GOOS == "windows" { // case insensitive
for := 0; < len(); ++ {
, := [], []
if == || lowerASCII() == lowerASCII() {
continue
}
return false
}
return true
}
return ==
}
func ( byte) byte {
if 'A' <= && <= 'Z' {
return + ('a' - 'A')
}
return
}
// _cgo_setenv should be an internal detail,
// but widely used packages access it using linkname.
// Notable members of the hall of shame include:
// - github.com/ebitengine/purego
//
// Do not remove or change the type signature.
// See go.dev/issue/67401.
//
//go:linkname _cgo_setenv
var _cgo_setenv unsafe.Pointer // pointer to C function
// _cgo_unsetenv should be an internal detail,
// but widely used packages access it using linkname.
// Notable members of the hall of shame include:
// - github.com/ebitengine/purego
//
// Do not remove or change the type signature.
// See go.dev/issue/67401.
//
//go:linkname _cgo_unsetenv
var _cgo_unsetenv unsafe.Pointer // pointer to C function
// Update the C environment if cgo is loaded.
func ( string, string) {
if _cgo_setenv == nil {
return
}
:= [2]unsafe.Pointer{cstring(), cstring()}
asmcgocall(_cgo_setenv, unsafe.Pointer(&))
}
// Update the C environment if cgo is loaded.
func ( string) {
if _cgo_unsetenv == nil {
return
}
:= [1]unsafe.Pointer{cstring()}
asmcgocall(_cgo_unsetenv, unsafe.Pointer(&))
}
func ( string) unsafe.Pointer {
:= make([]byte, len()+1)
copy(, )
return unsafe.Pointer(&[0])
}
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)