pub unsafe extern "C" fn ecs_parse_digit(
ptr: *const i8,
token: *mut i8,
) -> *const i8Expand description
Parse digit. This function will parse until the first non-digit character is found. The provided expression must contain at least one digit character.
@param ptr The expression to parse. @param token The output buffer. @return Pointer to the first non-digit character.