lex_test.c revision dafcb997e390efa4423883dafd100c975c4095d6
/*
* Copyright (C) 2004 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 1998-2001 Internet Software Consortium.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
* REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
* LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
* OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: lex_test.c,v 1.19 2004/03/05 04:58:37 marka Exp $ */
#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 masterfile = 1;
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);
}