Strings ›
Search
Detect Bracket
Matches nested brackets and returns the location after the end of a bracket that matched the current location.
int | detect_bracket (const char* str, int offset, int str_len, char open='{', char close='}') |
Detect Comments
Finds the end of a C/C++ comment, if it exists at the current location within a string
int | detect_comments (const char* str, int offset, int str_len) |
Detect Speech
Checks for speech marks at the current offset and moves to the corresponding end of the speech marked block
int | detect_speech (const char* str, int offset) |