12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- #ifndef CURLINC_CURLVER_H
- #define CURLINC_CURLVER_H
- #define LIBCURL_COPYRIGHT "Daniel Stenberg, <daniel@haxx.se>."
- #define LIBCURL_VERSION "7.88.1"
- #define LIBCURL_VERSION_MAJOR 7
- #define LIBCURL_VERSION_MINOR 88
- #define LIBCURL_VERSION_PATCH 1
- #define LIBCURL_VERSION_NUM 0x075801
- #define LIBCURL_TIMESTAMP "2023-02-20"
- #define CURL_VERSION_BITS(x,y,z) ((x)<<16|(y)<<8|(z))
- #define CURL_AT_LEAST_VERSION(x,y,z) \
- (LIBCURL_VERSION_NUM >= CURL_VERSION_BITS(x, y, z))
- #endif
|