| 260 | } |
| 261 | |
| 262 | double now() |
| 263 | { |
| 264 | using namespace std::chrono; |
| 265 | auto now = high_resolution_clock::now(); |
| 266 | return duration_cast<duration<double>>(now.time_since_epoch()).count(); |
| 267 | } |
| 268 | |
| 269 | extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { |
| 270 | chaiscript::ChaiScript chai; |