diff options
Diffstat (limited to 'ui/clopts_common.h')
-rw-r--r-- | ui/clopts_common.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/ui/clopts_common.h b/ui/clopts_common.h new file mode 100644 index 0000000000..6b8a6504a2 --- /dev/null +++ b/ui/clopts_common.h @@ -0,0 +1,37 @@ +/* clopts_common.h + * Handle command-line arguments common to various programs + * + * Wireshark - Network traffic analyzer + * By Gerald Combs <gerald@wireshark.org> + * Copyright 1998 Gerald Combs + * + * SPDX-License-Identifier: GPL-2.0-or-later + */ + +#ifndef __UI_CLOPTS_COMMON_H__ +#define __UI_CLOPTS_COMMON_H__ + +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + +extern int +get_natural_int(const char *string, const char *name); + +extern int +get_positive_int(const char *string, const char *name); + +extern guint32 +get_guint32(const char *string, const char *name); + +extern guint32 +get_nonzero_guint32(const char *string, const char *name); + +extern double +get_positive_double(const char *string, const char *name); + +#ifdef __cplusplus +} +#endif /* __cplusplus */ + +#endif /* __UI_CLOPTS_COMMON_H__ */ |