19 Feb
2025
19 Feb
'25
6:45 p.m.
Eh, the idiomatic thing to write would be ``` while (isprint(*p) || *p == '\t') ++p; while (p > *value && isspace(p[-1]) --p; *value_len = p - *value; ``` That way after each line p points to the character after the end. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/7363#note_95230