MCPcopy Index your code
hub / github.com/rclone/rclone / appendQuotedBytes

Function appendQuotedBytes

lib/encoder/encoder.go:1168–1172  ·  view source on GitHub ↗
(w io.Writer, s string)

Source from the content-addressed store, hash-verified

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

Callers 1

EncodeMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…