mirror of
https://github.com/versity/scoutfs.git
synced 2026-02-08 11:40:08 +00:00
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>
10 lines
180 B
C
10 lines
180 B
C
#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
|