(w io.Writer, format string, a ...any)
| 44 | } |
| 45 | |
| 46 | func Fwarningf(w io.Writer, format string, a ...any) { |
| 47 | warning.Fprint(w, "Warning: ") |
| 48 | fmt.Fprintf(w, format, a...) |
| 49 | } |
| 50 | |
| 51 | func Ferror(w io.Writer, a ...any) { |
| 52 | error.Fprint(w, "Error: ") |
no outgoing calls
no test coverage detected