SYS-REQ-112
(c byte)
| 2278 | |
| 2279 | // SYS-REQ-112 |
| 2280 | func isContainerWhitespace(c byte) bool { |
| 2281 | return c == ' ' || c == '\n' || c == '\r' || c == '\t' |
| 2282 | } |
| 2283 | |
| 2284 | // SYS-REQ-112 |
| 2285 | func validContainerPrimitive(value []byte) bool { |
no outgoing calls
no test coverage detected