mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-12 23:44:20 +00:00
15 lines
268 B
C++
15 lines
268 B
C++
|
#include <mad.h>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
AEDI_EXPECT(mad_version[0] != '\0');
|
||
|
AEDI_EXPECT(mad_build[0] != '\0');
|
||
|
|
||
|
mad_stream stream = {};
|
||
|
mad_stream_init(&stream);
|
||
|
AEDI_EXPECT(stream.error == MAD_ERROR_NONE);
|
||
|
mad_stream_finish(&stream);
|
||
|
|
||
|
return 0;
|
||
|
}
|