SYS-REQ-112
(c byte)
| 2351 | |
| 2352 | // SYS-REQ-112 |
| 2353 | func isContainerWhitespace(c byte) bool { |
| 2354 | return c == ' ' || c == '\n' || c == '\r' || c == '\t' |
| 2355 | } |
| 2356 | |
| 2357 | // SYS-REQ-112 |
| 2358 | func validContainerPrimitive(value []byte) bool { |
no outgoing calls
no test coverage detected