IsWhitespace
static bool IsWhitespace(uint32 c);
if (BUnicodeChar::IsWhitespace(fTextView->Text()[i])) {
if (!inQuote && BUnicodeChar::IsWhitespace(ch)) {
return 32 <= ch && ch <= 255 || IsWhitespace(ch);
return IsPrintableWithoutWhitespaces(ch) || IsWhitespace(ch);
if (IsWhitespace(ch)) {
while (IsWhitespace(GetCurrentChar())) {
if (IsWhitespace(ch)) {