[BACK]Return to glob.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / parse

Diff for /OpenXM_contrib2/asir2000/parse/glob.c between version 1.65 and 1.66

version 1.65, 2006/02/24 01:15:57 version 1.66, 2006/09/25 04:57:54
Line 45 
Line 45 
  * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,   * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,
  * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.   * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.
  *   *
  * $OpenXM: OpenXM_contrib2/asir2000/parse/glob.c,v 1.64 2006/02/10 23:56:44 fujiwara Exp $   * $OpenXM: OpenXM_contrib2/asir2000/parse/glob.c,v 1.65 2006/02/24 01:15:57 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "al.h"  #include "al.h"
Line 156  char asirname[BUFSIZ];
Line 156  char asirname[BUFSIZ];
 char displayname[BUFSIZ];  char displayname[BUFSIZ];
   
 int Verbose;  int Verbose;
 int do_quiet;  int do_quiet, do_batch;
   
 void glob_init() {  void glob_init() {
         int i;          int i;
Line 391  void process_args(int ac,char **av)
Line 391  void process_args(int ac,char **av)
   
                         paristack = atoi(*(av+1)); av += 2; ac -= 2;                          paristack = atoi(*(av+1)); av += 2; ac -= 2;
 #endif  #endif
                   } else if ( !strcmp(*av,"-batch") ) {
                           do_batch = 1; av++; ac--;
                 } else {                  } else {
                         fprintf(stderr,"%s : unknown option.\n",*av);                          fprintf(stderr,"%s : unknown option.\n",*av);
                         asir_terminate(1);                          asir_terminate(1);

Legend:
Removed from v.1.65  
changed lines
  Added in v.1.66

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>