aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/scripts/test_ports/vcpkg-ci-sdl3-ttf/project/main.c
blob: dc280e5e07e84c17c878666dfe3b8c09deb4f3ed (plain)
1
2
3
4
5
6
7
8
9
#include <SDL3_ttf/SDL_ttf.h>

int main()
{
    TTF_Init();
    TTF_Version();
    TTF_Quit();
    return 0;
}