1*7f2fe78bSCy Schubert #include <stdio.h> 2*7f2fe78bSCy Schubert #include <limits.h> 3*7f2fe78bSCy Schubert 4*7f2fe78bSCy Schubert #include "test_ccapi_check.h" 5*7f2fe78bSCy Schubert #include "test_ccapi_constants.h" 6*7f2fe78bSCy Schubert #include "test_ccapi_v2.h" 7*7f2fe78bSCy Schubert main(int argc,const char * argv[])8*7f2fe78bSCy Schubertint main (int argc, const char * argv[]) { 9*7f2fe78bSCy Schubert 10*7f2fe78bSCy Schubert cc_int32 err = ccNoError; 11*7f2fe78bSCy Schubert T_CCAPI_INIT; 12*7f2fe78bSCy Schubert err = check_cc_store(); 13*7f2fe78bSCy Schubert return err; 14*7f2fe78bSCy Schubert } 15