* Skip data in an input stream. Advances file stream without reading. * @param[in] count Bytes to skip */
| 88 | * @param[in] count Bytes to skip |
| 89 | */ |
| 90 | void skip(uint32_t count) { mStream.ignore(count); } |
| 91 | |
| 92 | /** |
| 93 | * Deletes the managed file. |
no outgoing calls