mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-15 22:58:24 +08:00
11 lines
190 B
C
11 lines
190 B
C
#include <stdio.h>
|
|
#include <avif/avif.h>
|
|
|
|
int main()
|
|
{
|
|
char codecVersions[256];
|
|
avifCodecVersions(codecVersions);
|
|
printf("Codec Versions: %s\n", codecVersions);
|
|
return 0;
|
|
}
|