]> git.proxmox.com Git - rustc.git/blob - src/rt/hoedown/src/version.h
Imported Upstream version 1.0.0~0alpha
[rustc.git] / src / rt / hoedown / src / version.h
1 /* version.h - holds Hoedown's version */
2
3 #ifndef HOEDOWN_VERSION_H
4 #define HOEDOWN_VERSION_H
5
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9
10 #define HOEDOWN_VERSION "2.0.0"
11 #define HOEDOWN_VERSION_MAJOR 2
12 #define HOEDOWN_VERSION_MINOR 0
13 #define HOEDOWN_VERSION_REVISION 0
14
15 extern void
16 hoedown_version(int *major, int *minor, int *revision);
17
18 #ifdef __cplusplus
19 }
20 #endif
21
22 #endif /** HOEDOWN_VERSION_H **/