mxe/src/libcddb-test.c

20 lines
405 B
C
Raw Normal View History

2016-12-06 22:37:18 +00:00
/*
* This file is part of MXE. See LICENSE.md for licensing information.
*/
// Based on: http://libcddb.sourceforge.net/tutorial.html
#include <stdio.h>
#include <cddb/cddb.h>
int main() {
cddb_track_t *track = NULL;
track = cddb_track_new();
if (track == NULL) {
fprintf(stderr, "out of memory, unable to create track");
}
cddb_track_destroy(track);
return 0;
}