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

Dependents:   msgpack_example

Committer:
yihui
Date:
Sat Oct 25 16:32:57 2014 +0000
Revision:
0:1382f081365b
initial

Who changed what in which revision?

UserRevisionLine numberNew contents of line
yihui 0:1382f081365b 1 /*
yihui 0:1382f081365b 2 * MessagePack for C
yihui 0:1382f081365b 3 *
yihui 0:1382f081365b 4 * Copyright (C) 2008-2009 FURUHASHI Sadayuki
yihui 0:1382f081365b 5 *
yihui 0:1382f081365b 6 * Licensed under the Apache License, Version 2.0 (the "License");
yihui 0:1382f081365b 7 * you may not use this file except in compliance with the License.
yihui 0:1382f081365b 8 * You may obtain a copy of the License at
yihui 0:1382f081365b 9 *
yihui 0:1382f081365b 10 * http://www.apache.org/licenses/LICENSE-2.0
yihui 0:1382f081365b 11 *
yihui 0:1382f081365b 12 * Unless required by applicable law or agreed to in writing, software
yihui 0:1382f081365b 13 * distributed under the License is distributed on an "AS IS" BASIS,
yihui 0:1382f081365b 14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
yihui 0:1382f081365b 15 * See the License for the specific language governing permissions and
yihui 0:1382f081365b 16 * limitations under the License.
yihui 0:1382f081365b 17 */
yihui 0:1382f081365b 18 /**
yihui 0:1382f081365b 19 * @defgroup msgpack MessagePack C
yihui 0:1382f081365b 20 * @{
yihui 0:1382f081365b 21 * @}
yihui 0:1382f081365b 22 */
yihui 0:1382f081365b 23
yihui 0:1382f081365b 24 #include "msgpack/object.h"
yihui 0:1382f081365b 25 #include "msgpack/zone.h"
yihui 0:1382f081365b 26 #include "msgpack/pack.h"
yihui 0:1382f081365b 27 #include "msgpack/unpack.h"
yihui 0:1382f081365b 28 #include "msgpack/sbuffer.h"
yihui 0:1382f081365b 29 #include "msgpack/vrefbuffer.h"
yihui 0:1382f081365b 30 #include "msgpack/version.h"
yihui 0:1382f081365b 31