int main(int argc, char** argv) {

    CClass *t1 = NULL;
    CClass *t2 = NULL;
    t1 = test_new(5);
    test_testfunc(t1);
    
    t2 = test_new(8);
    test_testfunc(t2);
    
    test_testfunc(t1);
    
    func();
    return (EXIT_SUCCESS);
}
Exemple #2
0
int main() {
        CTest *t = NULL;

        t = test_new(5);
        test_testfunc(t);
        test_delete(t);
        t = NULL;

        return 0;
}