Merge from vendor branch NCURSES:
[dragonfly.git] / contrib / bind-9.2.4rc7 / lib / isccc / lib.c
1 /*
2  * Portions Copyright (C) 2004  Internet Systems Consortium, Inc. ("ISC")
3  * Portions Copyright (C) 2001  Internet Software Consortium.
4  * Portions Copyright (C) 2001  Nominum, Inc.
5  *
6  * Permission to use, copy, modify, and distribute this software for any
7  * purpose with or without fee is hereby granted, provided that the above
8  * copyright notice and this permission notice appear in all copies.
9  *
10  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC AND NOMINUM DISCLAIMS ALL
11  * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
12  * OF MERCHANTABILITY AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY
13  * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17  */
18
19 /* $Id: lib.c,v 1.2.2.1 2004/03/09 06:12:25 marka Exp $ */
20
21 #include <config.h>
22
23 #include <stddef.h>
24
25 #include <isc/once.h>
26 #include <isc/msgcat.h>
27 #include <isc/util.h>
28
29 #include <isccc/lib.h>
30
31 /***
32  *** Globals
33  ***/
34
35 isc_msgcat_t *                  isccc_msgcat = NULL;
36
37
38 /***
39  *** Private
40  ***/
41
42 static isc_once_t               msgcat_once = ISC_ONCE_INIT;
43
44
45 /***
46  *** Functions
47  ***/
48
49 static void
50 open_msgcat(void) {
51         isc_msgcat_open("libisccc.cat", &isccc_msgcat);
52 }
53
54 void
55 isccc_lib_initmsgcat(void) {
56
57         /*
58          * Initialize the DNS library's message catalog, isccc_msgcat, if it
59          * has not already been initialized.
60          */
61
62         RUNTIME_CHECK(isc_once_do(&msgcat_once, open_msgcat) == ISC_R_SUCCESS);
63 }