sdlIspunct function

int sdlIspunct(
  1. int x
)
extern DECLSPEC int SDLCALL SDL_ispunct(int x)

Implementation

int sdlIspunct(int x) {
  final sdlIspunctLookupFunction =
      libSdl2.lookupFunction<Int32 Function(Int32 x), int Function(int x)>(
          'SDL_ispunct');
  return sdlIspunctLookupFunction(x);
}