github.com/primecitizens/pcz/std@v0.2.1/core/sys/envv_utf8.go (about) 1 // SPDX-License-Identifier: Apache-2.0 2 // Copyright 2023 The Prime Citizens 3 4 //go:build !noos && (darwin || linux || freebsd || netbsd || openbsd || solaris || dragonfly) 5 6 package sys 7 8 import ( 9 stdstring "github.com/primecitizens/pcz/std/builtin/string" 10 ) 11 12 var envs []*byte 13 14 func nthenv(i int) string { 15 return stdstring.FromByteArray(envs[i]) 16 }