Returns a std::string containing all remaining bytes of the input data. Prefer using |ConsumeRemainingBytes| unless you actually need a std::string object.
| 185 | // Prefer using |ConsumeRemainingBytes| unless you actually need a std::string |
| 186 | // object. |
| 187 | inline std::string FuzzedDataProvider::ConsumeRemainingBytesAsString() { |
| 188 | return ConsumeBytesAsString(remaining_bytes_); |
| 189 | } |
| 190 | |
| 191 | // Returns a number in the range [Type's min, Type's max]. The value might |
| 192 | // not be uniformly distributed in the given range. If there's no input data |
no outgoing calls
no test coverage detected