Function

AgsMathUtilfind_exponent_parenthesis

since: 3.2.0

Declaration [src]

void
ags_math_util_find_exponent_parenthesis (
  gchar* str,
  gint** exponent_open_position,
  gint** exponent_close_position,
  guint* exponent_open_position_count,
  guint* exponent_close_position_count
)

Description [src]

Find exponent parenthesis.

Available since: 3.2.0

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.
exponent_open_position

Type: gint**

Exponent open position array return location.

The argument will be set by the function.
The caller of the function takes ownership of the data, and is responsible for freeing it.
exponent_close_position

Type: gint**

Exponent close position array return location.

The argument will be set by the function.
The caller of the function takes ownership of the data, and is responsible for freeing it.
exponent_open_position_count

Type: guint*

Exponent open position count return location.

The argument will be set by the function.
exponent_close_position_count

Type: guint*

Exponent close position count return location.

The argument will be set by the function.