Diff for /libelwix/src/elwix.c between versions 1.9 and 1.11

version 1.9, 2017/01/09 12:53:18 version 1.11, 2024/01/22 15:24:28
Line 12  terms: Line 12  terms:
 All of the documentation and software included in the ELWIX and AITNET  All of the documentation and software included in the ELWIX and AITNET
 Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org>  Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org>
   
Copyright 2004 - 2016Copyright 2004 - 2023
         by Michael Pounov <misho@elwix.org>.  All rights reserved.          by Michael Pounov <misho@elwix.org>.  All rights reserved.
   
 Redistribution and use in source and binary forms, with or without  Redistribution and use in source and binary forms, with or without
Line 209  elwix_byteOrder() Line 209  elwix_byteOrder()
         return *(char*) &x;          return *(char*) &x;
 }  }
   
#ifndef strlcpy#ifndef HAVE_STRLCPY
 /*  /*
  * Copy src to string dst of size siz.  At most siz-1 characters   * Copy src to string dst of size siz.  At most siz-1 characters
  * will be copied.  Always NUL terminates (unless siz == 0).   * will be copied.  Always NUL terminates (unless siz == 0).
Line 239  strlcpy(char *dst, const char *src, size_t siz) Line 239  strlcpy(char *dst, const char *src, size_t siz)
 }  }
 #endif  #endif
   
#ifndef strlcat#ifndef HAVE_STRLCAT
 /*  /*
  * Appends src to string dst of size siz (unlike strncat, siz is the   * 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   * full size of dst, not space left).  At most siz-1 characters

Removed from v.1.9  
changed lines
  Added in v.1.11


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