mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-07 02:09:59 +00:00
18 lines
222 B
C
18 lines
222 B
C
|
|
#include "msgpack.h"
|
||
|
|
|
||
|
|
const char* msgpack_version(void)
|
||
|
|
{
|
||
|
|
return MSGPACK_VERSION;
|
||
|
|
}
|
||
|
|
|
||
|
|
int msgpack_version_major(void)
|
||
|
|
{
|
||
|
|
return MSGPACK_VERSION_MAJOR;
|
||
|
|
}
|
||
|
|
|
||
|
|
int msgpack_version_minor(void)
|
||
|
|
{
|
||
|
|
return MSGPACK_VERSION_MINOR;
|
||
|
|
}
|
||
|
|
|