| Revision 172,
463 bytes
checked in by xi, 7 years ago
(diff) |
|
Add doxygen support.
|
| Line | |
|---|
| 1 | /** |
|---|
| 2 | * @file yaml_version.h |
|---|
| 3 | * @brief Version information. |
|---|
| 4 | * |
|---|
| 5 | * Do not include yaml_version.h directly. |
|---|
| 6 | */ |
|---|
| 7 | |
|---|
| 8 | #ifndef YAML_VERSION_H |
|---|
| 9 | #define YAML_VERSION_H |
|---|
| 10 | |
|---|
| 11 | #ifdef __cplusplus |
|---|
| 12 | extern "C" { |
|---|
| 13 | #endif |
|---|
| 14 | |
|---|
| 15 | /** |
|---|
| 16 | * @brief Get the library version. |
|---|
| 17 | */ |
|---|
| 18 | |
|---|
| 19 | const char * |
|---|
| 20 | yaml_get_version_string(void); |
|---|
| 21 | |
|---|
| 22 | /** |
|---|
| 23 | * @brief Get the library version numbers. |
|---|
| 24 | */ |
|---|
| 25 | |
|---|
| 26 | void |
|---|
| 27 | yaml_get_version(int *major, int *minor, int *patch); |
|---|
| 28 | |
|---|
| 29 | #ifdef __cplusplus |
|---|
| 30 | } |
|---|
| 31 | #endif |
|---|
| 32 | |
|---|
| 33 | #endif /* #ifndef YAML_VERSION_H */ |
|---|
Note: See
TracBrowser
for help on using the repository browser.