You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mxe/src/coda-test.c

22 lines
360 B

/*
* This file is part of MXE. See LICENSE.md for licensing information.
*/
#include <stdio.h>
#include <coda.h>
int main() {
printf("Testing CODA version %s\n", libcoda_version);
int rc = coda_init();
if (rc) {
printf("coda_init returned error '%d' -- '%s'", coda_errno, coda_errno_to_string(coda_errno) );
}
coda_done();
return 0;
}