SYS-REQ-112
(c byte)
| 2410 | |
| 2411 | // SYS-REQ-112 |
| 2412 | func isContainerWhitespace(c byte) bool { |
| 2413 | return c == ' ' || c == '\n' || c == '\r' || c == '\t' |
| 2414 | } |
| 2415 | |
| 2416 | // SYS-REQ-112 |
| 2417 | func validContainerPrimitive(value []byte) bool { |
no outgoing calls
no test coverage detected