SDL_ttf
TTF_Init
int TTF_Init()
Initialize the truetype font API. This must be called before using other functions in this library, excepting TTF_WasInit. SDL does not have to be initialized before this call.
Returns: 0 on success, -1 on errors
if(TTF_Init()==-1) {
printf("TTF_Init: %s\n", TTF_GetError());
exit(2);
}
