mirror of
https://github.com/versity/scoutfs.git
synced 2025-12-23 05:25:18 +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>
25 lines
333 B
C
25 lines
333 B
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdbool.h>
|
|
#include <string.h>
|
|
#include <assert.h>
|
|
|
|
#include "cmd.h"
|
|
#include "util.h"
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
int ret;
|
|
|
|
/*
|
|
* XXX parse global options, env, configs, etc.
|
|
*/
|
|
|
|
ret = cmd_execute(argc, argv);
|
|
if (ret < 0)
|
|
return 1;
|
|
|
|
return 0;
|
|
}
|