(format string, args ...any)
| 87 | } |
| 88 | |
| 89 | func Fatalf(format string, args ...any) { |
| 90 | fmt.Fprintf(os.Stderr, "error: %s\n", fmt.Sprintf(format, args...)) |
| 91 | os.Exit(1) |
| 92 | } |
| 93 | |
| 94 | func printWrappedText(text string, width, subsequentIndent int) { |
| 95 | tokens := strings.Split(text, " ") |
no outgoing calls
no test coverage detected