/*
 * Faculty of Applied Science and Engineering, University of Toronto
 * CSC181: Introduction to Computer Programming, Fall 2000
 *
 * Assignment: 3
 * File: main.c
 * Author: Ray Ortigas (rayo@dgp.toronto.edu)
 * Contains: Small program demonstrating functionality of A3 code.
 */

#include <stdio.h>
#include "test.h"

int main(void) {
	int score = 0;

	score += testBST();
	score += testDictionary();

#ifdef _TVERBOSE
	printf("Final score:\n");
#endif
	printf("%d\n", score);

	return 0;
}