* A check to determine if the pointer 'p' * points to a region within storage. */
| 110 | * points to a region within storage. |
| 111 | */ |
| 112 | bool pointer_in_storage(char* p) const noexcept |
| 113 | { |
| 114 | return (buf_ <= p) && (p <= (buf_ + N)); |
| 115 | } |
| 116 | |
| 117 | /* |
| 118 | * Rounds up the number to the next closest number |
nothing calls this directly
no outgoing calls
no test coverage detected