00001 /* 00002 * Copyright (c) 2002 - 2006, Netherlands Forensic Institute 00003 * 00004 * All rights reserved. 00005 * 00006 * Redistribution and use in source and binary forms, with or without 00007 * modification, are permitted provided that the following conditions 00008 * are met: 00009 * 1. Redistributions of source code must retain the above copyright 00010 * notice, this list of conditions and the following disclaimer. 00011 * 2. Redistributions in binary form must reproduce the above copyright 00012 * notice, this list of conditions and the following disclaimer in the 00013 * documentation and/or other materials provided with the distribution. 00014 * 3. Neither the name of the Institute nor the names of its contributors 00015 * may be used to endorse or promote products derived from this software 00016 * without specific prior written permission. 00017 00018 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND 00019 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00020 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 00021 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE 00022 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 00023 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 00024 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 00025 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 00026 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 00027 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 00028 * SUCH DAMAGE. 00029 */ 00030 00031 00032 00033 /* 00034 * $Author: raoul $ 00035 * $LastChangedBy: kojak $ 00036 * $LastChangedDate: 2002-12-30 11:22:51 +0100 (Mon, 30 Dec 2002) $ 00037 */ 00038 00039 #ifndef __commandline_h__ 00040 #define __commandline_h__ 00041 00042 #define flag_set(word, bit) (((word) & (bit)) != 0) 00043 00044 typedef struct _RDD_OPTION { 00045 char *short_name; 00046 char *long_name; 00047 char *arg_descr; 00048 unsigned valid_modes; 00049 char *description; 00050 unsigned count; 00051 char *arg_value; 00052 } RDD_OPTION; 00053 00058 void rdd_opt_init(const char *usage_msg); 00059 00060 RDD_OPTION *rdd_get_opt_with_arg(RDD_OPTION * tab, char **argv, int argc, 00061 unsigned *i, char **opt, char **arg); 00062 00063 int rdd_opt_set_arg(RDD_OPTION * tab, char *longname, char **argp); 00064 00065 int rdd_opt_set(RDD_OPTION * tab, char *longname); 00066 00067 void rdd_opt_usage(RDD_OPTION * opttab, RDD_OPTION * output_opttab, int returnCode); 00068 00069 int compare_paths(char *first_path, char *second_path); 00070 00071 00072 #endif /* __commandline_h__ */