ogginfo/codec_skeleton.c calls utf8_decode() but does not include thf8.h,
resulting in the following compilation error on macOS 12.3.1:
codec_skeleton.c:118:9: error: implicit declaration of function 'utf8_decode' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
if (utf8_decode(header, &decoded) < 0) {
^
ogginfo/codec_skeleton.c
callsutf8_decode()
but does not includethf8.h
, resulting in the following compilation error on macOS 12.3.1: