rot13 method
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,
);
}