lex_test.c revision 7df0472d8a76c83d2137bd9549414a30787d58cf
/*
* Copyright (C) 1998, 1999, 2000 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 INTERNET SOFTWARE CONSORTIUM DISCLAIMS
* ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
* CONSORTIUM 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.
*/
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <isc/assertions.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 = %d file = %s\n",
}
done = 1;
}
if (result != ISC_R_SUCCESS)
return (0);
}