crypt method

Pointer<Char> crypt(
  1. Pointer<Char> arg0,
  2. Pointer<Char> arg1
)

Implementation

ffi.Pointer<ffi.Char> crypt(
  ffi.Pointer<ffi.Char> arg0,
  ffi.Pointer<ffi.Char> arg1,
) {
  return _crypt(arg0, arg1);
}