| 3866 | } |
| 3867 | |
| 3868 | static bool is_separator(unsigned int c) |
| 3869 | { |
| 3870 | return c==',' || c==';' || c=='(' || c==')' || c=='{' || c=='}' || c=='[' || c==']' || c=='|' || c=='\n' || c=='\r' || c=='.' || c=='!'; |
| 3871 | } |
| 3872 | |
| 3873 | static int is_word_boundary_from_right(ImGuiInputTextState* obj, int idx) |
| 3874 | { |
no outgoing calls
no test coverage detected