ChangeLog: I forgot to add the entries for the past few commits
[castfs.git] / test / mkdirrec.c
blob851796c664bd9c5e1b5b1b186f4ebd4e3c2426b2
1 #include "hash.h"
3 int main(int argc, char *argv[])
5 char buf[1024];
6 cast_paths_ptr tmp;
7 stage_path = argv[1];
8 castHashInit();
9 while(scanf("%s\n", buf) != EOF)
11 printf("Trying to mkdir -p %s\n", buf);
12 tmp = castHashSetValueOf(buf);
13 cast_mkdir_rec_staged(tmp);
15 castHashDestroy();
16 return 0;