added method dispatcher

This commit is contained in:
2018-09-26 13:18:37 +02:00
commit 71c633f479
5 changed files with 246 additions and 0 deletions

14
test/Makefile Normal file
View File

@@ -0,0 +1,14 @@
CC=gcc
all: test_method_dispatcher
method_dispatcher: clean
$(CC) ../method_dispatcher.c test_method_dispatcher.c -o method_dispatcher
test_method_dispatcher: method_dispatcher
valgrind ./method_dispatcher
clean:
-rm method_dispatcher