source: git/branches/dmik/argv-array.h@ 782

Last change on this file since 782 was 782, checked in by dmik, 11 years ago

git: Merge version 2.0.0 from vendor to dmik branch.

  • Property svn:eol-style set to native
File size: 704 bytes
Line 
1#ifndef ARGV_ARRAY_H
2#define ARGV_ARRAY_H
3
4extern const char *empty_argv[];
5
6struct argv_array {
7 const char **argv;
8 int argc;
9 int alloc;
10};
11
12#define ARGV_ARRAY_INIT { empty_argv, 0, 0 }
13
14void argv_array_init(struct argv_array *);
15void argv_array_push(struct argv_array *, const char *);
16__attribute__((__format__ (__printf__,2,3)))
17void argv_array_pushf(struct argv_array *, const char *fmt, ...);
18LAST_ARG_MUST_BE_NULL
19void argv_array_pushl(struct argv_array *, ...);
20void argv_array_pop(struct argv_array *);
21void argv_array_clear(struct argv_array *);
22const char **argv_array_detach(struct argv_array *array, int *argc);
23void argv_array_free_detached(const char **argv);
24
25#endif /* ARGV_ARRAY_H */
Note: See TracBrowser for help on using the repository browser.