Initial commit

This initial commit has enough to make a new file system and print out
it's structures.

Signed-off-by: Zach Brown <zab@versity.com>
This commit is contained in:
Zach Brown
2016-02-12 15:58:41 -08:00
commit 2c2f090168
17 changed files with 1417 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#ifndef _CMD_H_
#define _CMD_H_
void cmd_register(char *name, char *opts, char *summary,
int (*func)(int argc, char **argv));
int cmd_execute(int argc, char **argv);
#endif