(w io.Writer, s string)
| 1166 | } |
| 1167 | |
| 1168 | func appendQuotedBytes(w io.Writer, s string) { |
| 1169 | for _, b := range []byte(s) { |
| 1170 | _, _ = fmt.Fprintf(w, string(QuoteRune)+"%02X", b) |
| 1171 | } |
| 1172 | } |
| 1173 | |
| 1174 | func appendUnquotedByte(w io.Writer, s string) bool { |
| 1175 | if len(s) < 2 { |
no outgoing calls
no test coverage detected
searching dependent graphs…