lwIP 2.0.0  lwIP 2.0.0
LightweightIPstack

Macros

#define MEMCPY(dst, src, len)    memcpy(dst,src,len)
 
#define SMEMCPY(dst, src, len)    memcpy(dst,src,len)
 

Detailed Description

Macro Definition Documentation

#define MEMCPY (   dst,
  src,
  len 
)    memcpy(dst,src,len)

MEMCPY: override this if you have a faster implementation at hand than the one included in your C library

#define SMEMCPY (   dst,
  src,
  len 
)    memcpy(dst,src,len)

SMEMCPY: override this with care! Some compilers (e.g. gcc) can inline a call to memcpy() if the length is known at compile time and is small.