/*
* Copyright (C) 1998-2001, 2004, 2005, 2007, 2015, 2016 Internet Systems Consortium, Inc. ("ISC")
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
/* $Id: lex_test.c,v 1.23 2007/06/19 23:46:59 tbox Exp $ */
/*! \file */
#include <config.h>
#include <isc/commandline.h>
static void
case isc_tokentype_unknown:
break;
case isc_tokentype_string:
break;
case isc_tokentype_number:
break;
case isc_tokentype_qstring:
break;
case isc_tokentype_eol:
break;
case isc_tokentype_eof:
break;
case isc_tokentype_initialws:
break;
case isc_tokentype_special:
break;
case isc_tokentype_nomore:
break;
default:
}
}
int
int quiet = 0;
int c;
int stats = 0;
unsigned int options = 0;
int done = 0;
switch (c) {
case 'q':
quiet = 1;
break;
case 'm':
masterfile = 1;
break;
case 'c':
masterfile = 0;
break;
case 's':
stats = 1;
break;
}
}
if (masterfile) {
/* Set up to lex DNS master file. */
} else {
/* Set up to lex DNS config file. */
}
ISC_R_SUCCESS && !done) {
if (!quiet) {
printf(" line = %lu file = %s\n",
}
done = 1;
}
if (result != ISC_R_SUCCESS)
return (0);
}