All pastes #2086003 Raw Edit

Stuff

public text v1 · immutable
#2086003 ·published 2011-10-01 02:23 UTC
rendered paste body
int main(int argc, char **argv) {
    tree t;

    int i;

    for (i = 1; i < argc; i++) {
        if (strcmp("-r", argv[i]) == 0) {
           t = tree_new(RBT);
        } else {
           t = tree_new(BST);
    }

    tree_delete(t);

    return EXIT_SUCCESS;
}