1*753d2d2eSraf /*
2*753d2d2eSraf  * CDDL HEADER START
3*753d2d2eSraf  *
4*753d2d2eSraf  * The contents of this file are subject to the terms of the
5*753d2d2eSraf  * Common Development and Distribution License, Version 1.0 only
6*753d2d2eSraf  * (the "License").  You may not use this file except in compliance
7*753d2d2eSraf  * with the License.
8*753d2d2eSraf  *
9*753d2d2eSraf  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10*753d2d2eSraf  * or http://www.opensolaris.org/os/licensing.
11*753d2d2eSraf  * See the License for the specific language governing permissions
12*753d2d2eSraf  * and limitations under the License.
13*753d2d2eSraf  *
14*753d2d2eSraf  * When distributing Covered Code, include this CDDL HEADER in each
15*753d2d2eSraf  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16*753d2d2eSraf  * If applicable, add the following below this CDDL HEADER, with the
17*753d2d2eSraf  * fields enclosed by brackets "[]" replaced with your own identifying
18*753d2d2eSraf  * information: Portions Copyright [yyyy] [name of copyright owner]
19*753d2d2eSraf  *
20*753d2d2eSraf  * CDDL HEADER END
21*753d2d2eSraf  */
22*753d2d2eSraf /*
23*753d2d2eSraf  * Copyright (c) 1997-1999 by Sun Microsystems, Inc.
24*753d2d2eSraf  * All rights reserved.
25*753d2d2eSraf  */
26*753d2d2eSraf 
27*753d2d2eSraf #ifndef	_DB_H
28*753d2d2eSraf #define	_DB_H
29*753d2d2eSraf 
30*753d2d2eSraf #ifdef	__cplusplus
31*753d2d2eSraf extern "C" {
32*753d2d2eSraf #endif
33*753d2d2eSraf 
34*753d2d2eSraf /* Generated by m4 */
35*753d2d2eSraf extern void db_set_current_library(char const *);
36*753d2d2eSraf extern char *db_get_current_library(void);
37*753d2d2eSraf extern void db_set_current_file(char const *);
38*753d2d2eSraf extern char *db_get_current_file(void);
39*753d2d2eSraf extern void db_set_output_file(char const *);
40*753d2d2eSraf extern char *db_get_output_file(void);
41*753d2d2eSraf extern void db_set_current_interface(char const *);
42*753d2d2eSraf extern char *db_get_current_interface(void);
43*753d2d2eSraf extern void db_set_source_directory(char const *);
44*753d2d2eSraf extern char *db_get_source_directory(void);
45*753d2d2eSraf extern void db_set_target_directory(char const *);
46*753d2d2eSraf extern char *db_get_target_directory(void);
47*753d2d2eSraf 
48*753d2d2eSraf /* By hand. */
49*753d2d2eSraf extern void db_add_print_types(char *, char *);
50*753d2d2eSraf extern char *db_get_first_print_type(void);
51*753d2d2eSraf extern char *db_get_next_print_type(void);
52*753d2d2eSraf extern void db_sort_print_types(void);
53*753d2d2eSraf extern void db_print_print_types(void);
54*753d2d2eSraf 
55*753d2d2eSraf extern void db_set_arch(char const *);
56*753d2d2eSraf extern char const *db_get_arch(void);
57*753d2d2eSraf 
58*753d2d2eSraf extern void db_report();
59*753d2d2eSraf 
60*753d2d2eSraf #ifdef	__cplusplus
61*753d2d2eSraf }
62*753d2d2eSraf #endif
63*753d2d2eSraf 
64*753d2d2eSraf #endif	/* _DB_H */
65