X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fcommand-line.h;h=2592b79e847c6cda6bfce0b0cc5985fb8ce9e5f6;hb=ad4c35fe2dd8edaab6331667021b6b8410abde90;hp=426ce62e58ef600c610d2a2815525246992367be;hpb=34e63086edddcae06d7c1a4fa84fec0861e50758;p=openvswitch diff --git a/lib/command-line.h b/lib/command-line.h index 426ce62e..2592b79e 100644 --- a/lib/command-line.h +++ b/lib/command-line.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008 Nicira Networks. + * Copyright (c) 2008, 2009, 2010 Nicira, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -19,7 +19,27 @@ /* Utilities for command-line parsing. */ +#include "compiler.h" + struct option; + +struct command { + const char *name; + int min_args; + int max_args; + void (*handler)(int argc, char *argv[]); +}; + char *long_options_to_short_options(const struct option *options); +void run_command(int argc, char *argv[], const struct command[]); + +void proctitle_init(int argc, char **argv); +#ifdef __FreeBSD__ +#define proctitle_set setproctitle +#else +void proctitle_set(const char *, ...) + PRINTF_FORMAT(1, 2); +#endif +void proctitle_restore(void); #endif /* command-line.h */