Problem
src/main.c:133-135,140-142 uses manual while loops to skip whitespace characters. strspn(p, " \t\r\n") does this in one call.
Fix
Replace both loops with p += strspn(p, " \t\r\n");.
Reported by Kilo Code (automated audit tool), not a human reviewer.
Problem
src/main.c:133-135,140-142uses manualwhileloops to skip whitespace characters.strspn(p, " \t\r\n")does this in one call.Fix
Replace both loops with
p += strspn(p, " \t\r\n");.Reported by Kilo Code (automated audit tool), not a human reviewer.