sdlTrunc function

double sdlTrunc(
  1. double x
)
extern DECLSPEC double SDLCALL SDL_trunc(double x)

Implementation

double sdlTrunc(double x) {
  final sdlTruncLookupFunction = libSdl2.lookupFunction<
      Double Function(Double x), double Function(double x)>('SDL_trunc');
  return sdlTruncLookupFunction(x);
}