fgets method

Pointer<Char> fgets(
  1. Pointer<Char> __s,
  2. int __n,
  3. Pointer<FILE> __stream
)

GeneralAiSpeechToTextLibraryWhisper Binding By General Corporation & Global Corporation & General Developer

Implementation

ffi.Pointer<ffi.Char> fgets(
  ffi.Pointer<ffi.Char> __s,
  int __n,
  ffi.Pointer<FILE> __stream,
) {
  return _fgets(__s, __n, __stream);
}