mirror of
				https://github.com/msgpack/msgpack-c.git
				synced 2025-11-04 04:09:59 +01:00 
			
		
		
		
	git-svn-id: file:///Users/frsyuki/project/msgpack-git/svn/x@53 5a5092ae-2292-43ba-b2d5-dcab9c1a2731
		
			
				
	
	
		
			16 lines
		
	
	
		
			352 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			352 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef PACK_INLINE_H__
 | 
						|
#define PACK_INLINE_H__
 | 
						|
 | 
						|
#include "pack.h"
 | 
						|
 | 
						|
typedef msgpack_pack_t* msgpack_pack_context;
 | 
						|
 | 
						|
static inline void msgpack_pack_append_buffer(msgpack_pack_t* x, const unsigned char* b, unsigned int l);
 | 
						|
 | 
						|
#include <string.h>
 | 
						|
#include <arpa/inet.h>  /* __BYTE_ORDER */
 | 
						|
#include "msgpack/pack/inline_impl.h"
 | 
						|
 | 
						|
#endif /* pack_inline.h */
 | 
						|
 |