rot13 method

void rot13(
  1. Pointer<Char> str
)

FUNCTION DECLARATIONS **********************/ // Performs IN PLACE rotation of the input. Assumes input is NULL terminated. // Preserves each charcter's case. Ignores non alphabetic characters.

Implementation

void rot13(
  ffi.Pointer<ffi.Char> str,
) {
  return _rot13(
    str,
  );
}