Function
AgsMathUtilfind_term_parenthesis
since: 3.2.0
Declaration [src]
void
ags_math_util_find_term_parenthesis (
gchar* str,
gint** term_open_position,
gint** term_close_position,
guint* term_open_position_count,
guint* term_close_position_count
)
Parameters
str-
Type:
gchar*The string.
The data is owned by the caller of the function. The value is a NUL terminated UTF-8 string. term_open_position-
Type:
gint**Term open position array return location.
The argument will be set by the function. The called function takes ownership of the data, and is responsible for freeing it. term_close_position-
Type:
gint**Term close position array return location.
The argument will be set by the function. The called function takes ownership of the data, and is responsible for freeing it. term_open_position_count-
Type:
guint*Term open position count return location.
The argument will be set by the function. term_close_position_count-
Type:
guint*Term close position count return location.
The argument will be set by the function.