Refactored to add dispatcher and universal command handlers

This commit is contained in:
Mike Dvorkin
2010-08-07 16:39:11 -07:00
parent 3d1786c080
commit 24c793fce5
9 changed files with 69 additions and 55 deletions

9
src/help.c Normal file
View File

@@ -0,0 +1,9 @@
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "pit.h"
void pit_help(char *argv[])
{
puts("pit: help is not implemented yet");
}