Co-authored-by: aleksandr.vodyanov <aleksandr.vodyanov@avroid.tech> Reviewed-on: https://git.avroid.tech/Conan/conan_build/pulls/9
11 lines
173 B
C
11 lines
173 B
C
#include <stdio.h>
|
|
#include <webp/decode.h>
|
|
|
|
int main(void)
|
|
{
|
|
int version = WebPGetDecoderVersion();
|
|
printf("Webp Decoder version: %d\n", version);
|
|
|
|
return 0;
|
|
}
|