tidy-html5/src/version.h

24 lines
522 B
C
Raw Normal View History

2011-11-17 02:44:16 +00:00
/* version information
2015-01-22 12:40:50 +00:00
(c) 2007-2015 (W3C) MIT, ERCIM, Keio University
2011-11-17 02:44:16 +00:00
See tidy.h for the copyright notice.
*/
2014-08-03 18:09:37 +00:00
#ifdef RELEASE_DATE
static const char TY_(release_date)[] = RELEASE_DATE;
#else
2015-05-24 20:49:00 +00:00
static const char TY_(release_date)[] = "2015/01/22";
2014-08-03 18:09:37 +00:00
#endif
2015-01-22 12:40:50 +00:00
#ifdef LIBTIDY_VERSION
#ifdef RC_NUMBER
static const char TY_(library_version)[] = LIBTIDY_VERSION "." RC_NUMBER;
#else
2015-01-22 12:40:50 +00:00
static const char TY_(library_version)[] = LIBTIDY_VERSION;
#endif
2015-01-22 12:40:50 +00:00
#else
static const char TY_(library_version)[] = "5.0.0";
#endif
2014-08-03 18:09:37 +00:00
2015-01-22 12:40:50 +00:00
/* eof */