Diff for /libelwix/inc/elwix.h between versions 1.13 and 1.13.4.1

version 1.13, 2015/06/25 17:53:49 version 1.13.4.1, 2016/05/14 11:31:38
Line 49  SUCH DAMAGE. Line 49  SUCH DAMAGE.
   
 #include <assert.h>  #include <assert.h>
 #include <syslog.h>  #include <syslog.h>
   #include <stdarg.h>
 #include <sys/types.h>  #include <sys/types.h>
 #include <sys/param.h>  #include <sys/param.h>
 #include <sys/limits.h>  
 #include <sys/socket.h>  #include <sys/socket.h>
 #include <sys/endian.h>  
 #include <sys/un.h>  #include <sys/un.h>
   #ifndef __linux__
   #include <sys/limits.h>
   #include <sys/endian.h>
 #include <net/if_dl.h>  #include <net/if_dl.h>
   #endif
 #include <netinet/in.h>  #include <netinet/in.h>
 #include <arpa/inet.h>  #include <arpa/inet.h>
   
   #include <elwix/aqueue.h>
 #include <elwix/atree.h>  #include <elwix/atree.h>
 #include <elwix/ampool.h>  #include <elwix/ampool.h>
 #include <elwix/acrc.h>  #include <elwix/acrc.h>
Line 209  void elwixFini(); Line 213  void elwixFini();
  * return: 1 = little endian or 0 big endian   * return: 1 = little endian or 0 big endian
  */   */
 int elwix_byteOrder();  int elwix_byteOrder();
   
   #ifndef strlcpy
   /*
    * Copy src to string dst of size siz.  At most siz-1 characters
    * will be copied.  Always NUL terminates (unless siz == 0).
    * Returns strlen(src); if retval >= siz, truncation occurred.
    */
   size_t strlcpy(char *dst, const char *src, size_t siz);
   #endif
   #ifndef strlcat
   /*
    * Appends src to string dst of size siz (unlike strncat, siz is the
    * full size of dst, not space left).  At most siz-1 characters
    * will be copied.  Always NUL terminates (unless siz <= strlen(dst)).
    * Returns strlen(src) + MIN(siz, strlen(initial dst)).
    * If retval >= siz, truncation occurred.
    */
   size_t strlcat(char *dst, const char *src, size_t siz);
   #endif
   
 /* memory management hooks */  /* memory management hooks */
 extern void *(*e_malloc)(size_t);  extern void *(*e_malloc)(size_t);

Removed from v.1.13  
changed lines
  Added in v.1.13.4.1


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>