sdlIslower function

int sdlIslower(
  1. int x
)
extern DECLSPEC int SDLCALL SDL_islower(int x)

Implementation

int sdlIslower(int x) {
  final sdlIslowerLookupFunction =
      libSdl2.lookupFunction<Int32 Function(Int32 x), int Function(int x)>(
          'SDL_islower');
  return sdlIslowerLookupFunction(x);
}