yajl_version.h 358 B

1234567891011121314151617181920212223
  1. #ifndef YAJL_VERSION_H_
  2. #define YAJL_VERSION_H_
  3. #include "yajl_common.h"
  4. #define YAJL_MAJOR 2
  5. #define YAJL_MINOR 1
  6. #define YAJL_MICRO 1
  7. #define YAJL_VERSION ((YAJL_MAJOR * 10000) + (YAJL_MINOR * 100) + YAJL_MICRO)
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11. extern int YAJL_API yajl_version(void);
  12. #ifdef __cplusplus
  13. }
  14. #endif
  15. #endif /* YAJL_VERSION_H_ */