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

Dependents:   msgpack_example

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers version.c Source File

version.c

00001 #include "msgpack.h"
00002 
00003 const char* msgpack_version(void)
00004 {
00005     return MSGPACK_VERSION;
00006 }
00007 
00008 int msgpack_version_major(void)
00009 {
00010     return MSGPACK_VERSION_MAJOR;
00011 }
00012 
00013 int msgpack_version_minor(void)
00014 {
00015     return MSGPACK_VERSION_MINOR;
00016 }
00017