Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-who committed Apr 26, 2024
1 parent 068b5d2 commit 4a6c711
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions spit/blockdeviceMain.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#include "blockdevice.h"

int main(int argc, char *argv[]) {

if (argc > 1) {
for (int i = 1; i < argc; i++) {
bdType *bd = bdInit(argv[i]);
if (bd) {
bdDumpKV(stderr, bd);
}
// bdFree(bd);
}
}

return 0;
}

0 comments on commit 4a6c711

Please sign in to comment.