2024-06-19 23:58:20 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
|
|
import (
|
2025-04-03 15:52:18 +08:00
|
|
|
"github.com/goplus/lib/c"
|
|
|
|
|
"github.com/goplus/lib/c/os"
|
2024-06-19 23:58:20 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
|
wd := os.Getcwd(c.Alloca(os.PATH_MAX), os.PATH_MAX)
|
|
|
|
|
c.Printf(c.Str("cwd: %s\n"), wd)
|
|
|
|
|
}
|