messagepack implementation for embedded systems (mbed / arduino)

Dependents:   hello_message_pack

msgpack-c & msgpack-c++ https://github.com/msgpack/msgpack-c implementation for embedded systems (mbed / Arduino)

version.c

Committer:
hideakitai
Date:
2016-02-22
Revision:
4:bd0c06dd6e92
Parent:
0:3f9dbf1e2cb0

File content as of revision 4:bd0c06dd6e92:

#include "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;
}

int msgpack_version_revision(void)
{
    return MSGPACK_VERSION_REVISION;
}