puts method

int puts(
  1. Pointer<Char> __s
)

Implementation

int puts(
  ffi.Pointer<ffi.Char> __s,
) {
  return _puts(
    __s,
  );
}