initial commit
This commit is contained in:
10
third_party/libhv/unittest/mkdir_test.c
vendored
Executable file
10
third_party/libhv/unittest/mkdir_test.c
vendored
Executable file
@@ -0,0 +1,10 @@
|
||||
#include "hbase.h"
|
||||
|
||||
int main(int argc, char* argv[]) {
|
||||
if (argc < 2) {
|
||||
printf("Usage: mkdir_p dir\n");
|
||||
return -1;
|
||||
}
|
||||
const char* dir = argv[1];
|
||||
return hv_mkdir_p(dir);
|
||||
}
|
||||
Reference in New Issue
Block a user