xref: /netbsd-src/external/bsd/unbound/dist/testdata/speed_cache.tdir/makeqs.c (revision 32d1c65c71fbdb65a012e8392a62a757dd6853e9)
1 /**
2  * \file
3  * This file creates queries for the speed test
4  */
5 #include <stdio.h>
6 #include <stdlib.h>
7 /** main program to create queries, pass the number of them. */
8 int main(int argc, char** argv) {
9         int i;
10         int max = atoi(argv[1]);
11         for(i=0; i<max; i++)
12                 printf("a%8.8d.example.com IN A\n", i);
13         return 0;
14 }
15