CharUpperBuffA method

int CharUpperBuffA(
  1. Pointer<Int8> lpsz,
  2. int cchLength
)

Implementation

int CharUpperBuffA(
  ffi.Pointer<ffi.Int8> lpsz,
  int cchLength,
) {
  return (_CharUpperBuffA ??=
      _dylib.lookupFunction<_c_CharUpperBuffA, _dart_CharUpperBuffA>(
          'CharUpperBuffA'))(
    lpsz,
    cchLength,
  );
}