1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#include <stdio.h> #include <stdint.h> #include <zlib.h> #include <ogg/ogg.h> #ifdef HAVE_LIBPLIST # include <plist/plist.h> #endif int main(int argc, char** argv) { printf("hello world!\n"); inflate(0, 0); ogg_sync_init(0); #ifdef HAVE_LIBPLIST plist_new_dict(); #endif return 0; }