MessagePack C implementation for mbed, modified from https://github.com/msgpack/msgpack-c

Dependents:   msgpack_example

version.c

Committer:
yihui
Date:
2014-10-25
Revision:
2:5237a514fdab
Parent:
0:1382f081365b

File content as of revision 2:5237a514fdab:

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