The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
/* ------------------------------------------------------------------------
@NAME       : args.h
@DESCRIPTION: Typedef and prototype needed for command-line processing
              by the bibparse program.
@CREATED    : January 1997, Greg Ward
@MODIFIED   : 
@VERSION    : $Id$
@COPYRIGHT  : Copyright (c) 1996-97 by Gregory P. Ward.  All rights reserved.

              This file is part of the btparse distribution (but not part
              of the library itself).  This is free software; you can
              redistribute it and/or modify it under the terms of the GNU
              General Public License as published by the Free Software
              Foundation; either version 2 of the License, or (at your
              option) any later version.
-------------------------------------------------------------------------- */
#ifndef ARGS_H
#define ARGS_H

#include <btparse.h>

typedef struct
{
   btshort   string_opts;
   btshort   other_opts;
   boolean   check_only;
   boolean   quote_strings;
   boolean   dump_ast;
   boolean   whole_file;
} parser_options;

parser_options *parse_args (int argc, char **argv);

#endif /* ARGS_H */