123456789101112131415161718192021222324 |
- #include "lub/argv.h"
- typedef struct lub_arg_s lub_arg_t;
- struct lub_arg_s {
- char *arg;
- size_t offset;
- bool_t quoted;
- };
- struct lub_argv_s {
- unsigned argc;
- lub_arg_t *argv;
- };
- const char *lub_argv_nextword(const char *string,
- size_t * len, size_t * offset, size_t * quoted);
|