3 int main(int argc
, char *argv
[])
7 stage_path
= strdup("/this/is/the/stage/path");
9 while(scanf("%s\n", buf
) != EOF
)
12 tmp
= castHashGetValueOf(buf
);
15 printf("Get Value Of %s, %s\n", tmp
->root_path
, tmp
->stage_path
);
17 tmp
= castHashSetValueOf(buf
);
18 printf("Set Value Of %s, %s\n", tmp
->root_path
, tmp
->stage_path
);