strlcat.c
上传用户:hongyu5696
上传日期:2018-01-22
资源大小:391k
文件大小:2k
源码类别:

PlugIns编程

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com>
  3.  *
  4.  * Permission to use, copy, modify, and distribute this software for any
  5.  * purpose with or without fee is hereby granted, provided that the above
  6.  * copyright notice and this permission notice appear in all copies.
  7.  *
  8.  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  9.  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  10.  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  11.  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  12.  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  13.  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  14.  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  15.  */
  16. #include <sys/types.h>
  17. #include <string.h>
  18. /*
  19.  * Appends src to string dst of size siz (unlike strncat, siz is the
  20.  * full size of dst, not space left).  At most siz-1 characters
  21.  * will be copied.  Always NUL terminates (unless siz <= strlen(dst)).
  22.  * Returns strlen(src) + MIN(siz, strlen(initial dst)).
  23.  * If retval >= siz, truncation occurred.
  24.  */
  25. size_t strlcat(char *dst, const char *src, size_t siz)
  26. {
  27.     register char *d = dst;
  28.     register const char *s = src;
  29.     register size_t n = siz;
  30.     size_t dlen;
  31.     /* Find the end of dst and adjust bytes left but don't go past end */
  32.     while (n-- != 0 && *d != '')
  33. d++;
  34.     dlen = d - dst;
  35.     n = siz - dlen;
  36.     if (n == 0)
  37. return (dlen + strlen(s));
  38.     while (*s != '') {
  39. if (n != 1) {
  40.     *d++ = *s;
  41.     n--;
  42. }
  43. s++;
  44.     }
  45.     *d = '';
  46.     return (dlen + (s - src)); /* count does not include NUL */
  47. }