tmpnam_s method

int tmpnam_s(
  1. Pointer<Char> _Buffer,
  2. int _Size
)

Implementation

int tmpnam_s(
  ffi.Pointer<ffi.Char> _Buffer,
  int _Size,
) {
  return _tmpnam_s(
    _Buffer,
    _Size,
  );
}