| 3708 | } |
| 3709 | |
| 3710 | static bool is_separator(unsigned int c) |
| 3711 | { |
| 3712 | return c == ',' || c == ';' || c == '(' || c == ')' || c == '{' || c == '}' || c == '[' || c == ']' || c == '|' || c == '\n' || c == '\r' || c == '.' || c == '!'; |
| 3713 | } |
| 3714 | |
| 3715 | static int is_word_boundary_from_right(ImGuiInputTextState* obj, int idx) |
| 3716 | { |
no outgoing calls
no test coverage detected