Function
AgsMathUtilfind_function_parenthesis
since: 3.2.0
Declaration [src]
void
ags_math_util_find_function_parenthesis (
gchar* str,
gint** function_open_position,
gint** function_close_position,
guint* function_open_position_count,
guint* function_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. function_open_position
-
Type:
gint**
Function open position array return location.
The argument will be set by the function. The caller of the function takes ownership of the returned data, and is responsible for freeing it. function_close_position
-
Type:
gint**
Function close position array return location.
The argument will be set by the function. The caller of the function takes ownership of the returned data, and is responsible for freeing it. function_open_position_count
-
Type:
guint*
Function open position count return location.
The argument will be set by the function. function_close_position_count
-
Type:
guint*
Function close position count return location.
The argument will be set by the function.