maxStringLength top-level constant

int const maxStringLength

Upper bound for null-terminated string scans to prevent unbounded loops when a pointer is invalid or lacks a terminator.

Implementation

const int maxStringLength = 256;