BRL-CAD
version.h
Go to the documentation of this file.
1 /* V E R S I O N . H
2  * BRL-CAD
3  *
4  * Copyright (c) 2004-2024 United States Government as represented by
5  * the U.S. Army Research Laboratory.
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public License
9  * version 2.1 as published by the Free Software Foundation.
10  *
11  * This library is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this file; see the file named COPYING for more
18  * information.
19  */
20 
21 #ifndef BU_VERSION_H
22 #define BU_VERSION_H
23 
24 #include "common.h"
25 #include "bu/defines.h"
26 
27 __BEGIN_DECLS
28 
29 /** @addtogroup bu_version
30  * @brief
31  * Version reporting for LIBBU
32  */
33 /** @{ */
34 /** @file bu/version.h */
35 
36 /**
37  * returns the compile-time version of libbu
38  */
39 BU_EXPORT extern const char *bu_version(void);
40 
41 /** @} */
42 
43 __END_DECLS
44 
45 #endif /* BU_VERSION_H */
46 
47 /*
48  * Local Variables:
49  * mode: C
50  * tab-width: 8
51  * indent-tabs-mode: t
52  * c-file-style: "stroustrup"
53  * End:
54  * ex: shiftwidth=4 tabstop=8
55  */
Header file for the BRL-CAD common definitions.
const char * bu_version(void)