| 57 | } |
| 58 | |
| 59 | inline bool IsWhitespace(uint8_t c) { |
| 60 | if (ARROW_PREDICT_TRUE(c > ' ')) { |
| 61 | return false; |
| 62 | } |
| 63 | return c == ' ' || c == '\t'; |
| 64 | } |
| 65 | |
| 66 | // Updates data_inout and size_inout to not include leading/trailing whitespace |
| 67 | // characters. |