Co-authored-by: aleksandr.vodyanov <aleksandr.vodyanov@avroid.tech> Reviewed-on: https://git.avroid.tech/Conan/conan_build/pulls/9
11 lines
206 B
C
11 lines
206 B
C
#include "ogg/ogg.h"
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main () {
|
|
ogg_sync_state og;
|
|
int result = ogg_sync_init(&og);
|
|
printf("OGG sync init result: %d\n\r", result);
|
|
return EXIT_SUCCESS;
|
|
}
|