sdlTruncf function

double sdlTruncf(
  1. double x
)
extern DECLSPEC float SDLCALL SDL_truncf(float x)

Implementation

double sdlTruncf(double x) {
  final sdlTruncfLookupFunction = libSdl2.lookupFunction<
      Float Function(Float x), double Function(double x)>('SDL_truncf');
  return sdlTruncfLookupFunction(x);
}