ttfTagToString function ttf
Convert from a 32-bit tag to a 4 character string.
\param tag the 32-bit tag to convert. \param string a pointer filled in with the 4 character representation of the tag. \param size the size of the buffer pointed at by string, should be at least 4.
\threadsafety It is safe to call this function from any thread.
\since This function is available since SDL_ttf 3.0.0.
\sa TTF_TagToString
extern SDL_DECLSPEC void SDLCALL TTF_TagToString(Uint32 tag, char *string, size_t size)
Implementation
void ttfTagToString(int tag, Pointer<Int8> string, int size) {
final ttfTagToStringLookupFunction = _libTtf
.lookupFunction<
Void Function(Uint32 tag, Pointer<Int8> string, Uint32 size),
void Function(int tag, Pointer<Int8> string, int size)
>('TTF_TagToString');
return ttfTagToStringLookupFunction(tag, string, size);
}