diff options
Diffstat (limited to 'serve.h')
| -rw-r--r-- | serve.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,15 +1,15 @@ #ifndef SERVE_H #define SERVE_H -struct argv_array; -extern int has_capability(const struct argv_array *keys, const char *capability, - const char **value); +struct strvec; +int has_capability(const struct strvec *keys, const char *capability, + const char **value); struct serve_options { unsigned advertise_capabilities; unsigned stateless_rpc; }; #define SERVE_OPTIONS_INIT { 0 } -extern void serve(struct serve_options *options); +void serve(struct serve_options *options); #endif /* SERVE_H */ |
