Merge from vendor branch READLINE:
[dragonfly.git] / contrib / bind-9.2.4rc7 / lib / dns / gen-unix.h
1 /*
2  * Copyright (C) 2004  Internet Systems Consortium, Inc. ("ISC")
3  * Copyright (C) 1999-2001  Internet Software Consortium.
4  *
5  * Permission to use, copy, modify, and distribute this software for any
6  * purpose with or without fee is hereby granted, provided that the above
7  * copyright notice and this permission notice appear in all copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
10  * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
11  * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
12  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
13  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
14  * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
15  * PERFORMANCE OF THIS SOFTWARE.
16  */
17
18 /* $Id: gen-unix.h,v 1.12.2.1 2004/03/09 06:11:01 marka Exp $ */
19
20 /*
21  * This file is responsible for defining two operations that are not
22  * directly portable between Unix-like systems and Windows NT, option
23  * parsing and directory scanning.  It is here because it was decided
24  * that the "gen" build utility was not to depend on libisc.a, so
25  * the functions delcared in isc/commandline.h and isc/dir.h could not
26  * be used.
27  *
28  * The commandline stuff is really just a wrapper around getopt().
29  * The dir stuff was shrunk to fit the needs of gen.c.
30  */
31
32 #ifndef DNS_GEN_UNIX_H
33 #define DNS_GEN_UNIX_H 1
34
35 #include <sys/types.h>          /* Required on some systems for dirent.h. */
36
37 #include <dirent.h>
38 #include <unistd.h>             /* XXXDCL Required for ?. */
39
40 #include <isc/boolean.h>
41 #include <isc/lang.h>
42
43 #define isc_commandline_parse           getopt
44 #define isc_commandline_argument        optarg
45
46 typedef struct {
47         DIR *handle;
48         char *filename;
49 } isc_dir_t;
50
51 ISC_LANG_BEGINDECLS
52
53 static isc_boolean_t
54 start_directory(const char *path, isc_dir_t *dir) {
55         dir->handle = opendir(path);
56
57         if (dir->handle != NULL)
58                 return (ISC_TRUE);
59         else
60                 return (ISC_FALSE);
61
62 }
63
64 static isc_boolean_t
65 next_file(isc_dir_t *dir) {
66         struct dirent *dirent;
67
68         dir->filename = NULL;
69
70         if (dir->handle != NULL) {
71                 dirent = readdir(dir->handle);
72                 if (dirent != NULL)
73                         dir->filename = dirent->d_name;
74         }
75
76         if (dir->filename != NULL)
77                 return (ISC_TRUE);
78         else
79                 return (ISC_FALSE);
80 }
81
82 static void
83 end_directory(isc_dir_t *dir) {
84         if (dir->handle != NULL)
85                 closedir(dir->handle);
86
87         dir->handle = NULL;
88 }
89
90 ISC_LANG_ENDDECLS
91
92 #endif /* DNS_GEN_UNIX_H */