You are a fuzzing expert. Write a libFuzzer harness for the C function below.
Output ONLY C code: an `LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)`
that forwards the input to `parse_records`. Include the extern declaration.
Keep it minimal. No explanation.

int parse_records(const uint8_t *data, size_t size);
