SYS-REQ-112
(c byte)
| 2370 | |
| 2371 | // SYS-REQ-112 |
| 2372 | func isContainerWhitespace(c byte) bool { |
| 2373 | return c == ' ' || c == '\n' || c == '\r' || c == '\t' |
| 2374 | } |
| 2375 | |
| 2376 | // SYS-REQ-112 |
| 2377 | func validContainerPrimitive(value []byte) bool { |
no outgoing calls
no test coverage detected