strl.c
上传用户:xu_441
上传日期:2007-01-04
资源大小:1640k
文件大小:2k
源码类别:

Email客户端

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright (c) 1999 Sendmail, Inc. and its suppliers.
  3.  * All rights reserved.
  4.  *
  5.  * By using this file, you agree to the terms and conditions set
  6.  * forth in the LICENSE file which can be found at the top level of
  7.  * the sendmail distribution.
  8.  *
  9.  */
  10. #ifndef lint
  11. static char id[] = "@(#)$Id: strl.c,v 8.4 1999/10/18 21:50:06 gshapiro Exp $";
  12. #endif /* ! lint */
  13. #include <sendmail.h>
  14. #ifndef HASSTRL
  15. /*
  16. **  strlcpy -- copy string obeying length and '' terminate it
  17. **
  18. ** terminates with '' if len > 0
  19. **
  20. ** Parameters:
  21. ** dst -- "destination" string.
  22. ** src -- "from" string.
  23. ** len -- length of space available in "destination" string.
  24. **
  25. ** Returns:
  26. ** total length of the string tried to create (=strlen(src))
  27. ** if this is greater than len then an overflow would have
  28. ** occurred.
  29. */
  30. size_t
  31. strlcpy(dst, src, len)
  32. register char *dst;
  33. register const char *src;
  34. size_t len;
  35. {
  36. register size_t i;
  37. if (len-- <= 0)
  38. return strlen(src);
  39. for (i = 0; i < len && (dst[i] = src[i]) != 0; i++)
  40. continue;
  41. dst[i] = '';
  42. if (src[i] == '')
  43. return i;
  44. else
  45. return i + strlen(src + i);
  46. }
  47. /*
  48. **  strlcat -- catenate strings obeying length and '' terminate it
  49. **
  50. ** strlcat will append at most len - strlen(dst) - 1 chars.
  51. ** terminates with '' if len > 0
  52. **
  53. ** Parameters:
  54. ** dst -- "destination" string.
  55. ** src -- "from" string.
  56. ** len -- max. length of "destination" string.
  57. **
  58. ** Returns:
  59. ** total length of the string tried to create
  60. ** (= initial length of dst + length of src)
  61. ** if this is greater than len then an overflow would have
  62. ** occurred.
  63. */
  64. size_t
  65. strlcat(dst, src, len)
  66. register char *dst;
  67. register const char *src;
  68. size_t len;
  69. {
  70. register size_t i, j, o;
  71. o = strlen(dst);
  72. if (len < o + 1)
  73.   return o + strlen(src);
  74. len -= o + 1;
  75. for (i = 0, j = o; i < len && (dst[j] = src[i]) != 0; i++, j++)
  76. continue;
  77. dst[j] = '';
  78. if (src[i] == '')
  79. return j;
  80. else
  81. return j + strlen(src + i);
  82. }
  83. #endif /* HASSTRL */