diff options
Diffstat (limited to 'src/driver/slbt_driver_ctx.c')
-rw-r--r-- | src/driver/slbt_driver_ctx.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/driver/slbt_driver_ctx.c b/src/driver/slbt_driver_ctx.c index a8aaffb..12748cd 100644 --- a/src/driver/slbt_driver_ctx.c +++ b/src/driver/slbt_driver_ctx.c @@ -131,6 +131,26 @@ void slbt_argv_free(struct argv_meta * meta) } +void slbt_argv_usage( + int fd, + const char * header, + const struct argv_option ** optv, + const char * mode) +{ + return argv_usage(fd,header,optv,mode); +} + + +void slbt_argv_usage_plain( + int fd, + const char * header, + const struct argv_option ** optv, + const char * mode) +{ + return argv_usage_plain(fd,header,optv,mode); +} + + uint64_t slbt_argv_flags(uint64_t flags) { uint32_t ret = 0; |