mxe/src/libcddb-test.c

20 lines
408 B
C
Raw Permalink Normal View History

2016-12-06 22:37:18 +00:00
/*
* This file is part of MXE. See LICENSE.md for licensing information.
*/
2018-07-14 00:02:08 +01:00
/* Based on: https://libcddb.sourceforge.io/tutorial.html */
2016-12-06 22:37:18 +00:00
#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;
}