-
Notifications
You must be signed in to change notification settings - Fork 21
Closed
Description
I'm assuming that at some point calls would be added or possibly removed, and one might need preprocessor definitions to understand which version of cloudlibc is available.
I found the following in include/uv.h but that file is for event handling:
//
// Version-checking macros and functions.
//
#define UV_VERSION_MAJOR 1
#define UV_VERSION_MINOR 15
#define UV_VERSION_PATCH 0
#define UV_VERSION_IS_RELEASE 0
#define UV_VERSION_SUFFIX "cloudlibc"
#define UV_VERSION_HEX \
(UV_VERSION_MAJOR << 16 | UV_VERSION_MINOR << 8 | UV_VERSION_PATCH)
__BEGIN_DECLS
unsigned int uv_version(void);
const char *uv_version_string(void);
__END_DECLS
Is this official versioning for the entire library?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels