GetCodepointPrevious method

int GetCodepointPrevious(
  1. Pointer<Char> text,
  2. Pointer<Int> codepointSize
)

Get previous codepoint in a UTF-8 encoded string, 0x3f('?') is returned on failure

Implementation

int GetCodepointPrevious(Pointer<Char> text, Pointer<Int> codepointSize)
  => _GetCodepointPrevious(text, codepointSize);