strlcat,strlcpy

  1. /* 
  2.  * '_cups_strlcat()' - Safely concatenate two strings. 
  3.  */  
  4.   
  5. size_t                  /* O - Length of string */  
  6. strlcat(char       *dst,        /* O - Destination string */  
  7.               const char *src,      /* I - Source string */  
  8.           size_t     size)      /* I - Size of destination string buffer */  
  9. {  
  10.   size_t    srclen;         /* Length of source string */  
  11.   size_t    dstlen;         /* Length of destination string */  
  12.   
  13.   
  14.  /* 
  15.   * Figure out how much room is left... 
  16.   */  
  17.   
  18.   dstlen = strlen(dst);  
  19.   size   -= dstlen + 1;  
  20.   
  21.   if (!size)  
  22.     return (dstlen);        /* No room, return immediately... */  
  23.   
  24.  /* 
  25.   * Figure out how much room is needed... 
  26.   */  
  27.   
  28.   srclen = strlen(src);  
  29.   
  30.  /* 
  31.   * Copy the appropriate amount... 
  32.   */  
  33.   
  34.   if (srclen > size)  
  35.     srclen = size;  
  36.   
  37.   memcpy(dst + dstlen, src, srclen);  
  38.   dst[dstlen + srclen] = '\0';  
  39.   
  40.   return (dstlen + srclen);  
  41. }  
  42. #endif /* !HAVE_STRLCAT */  
  43.   
  44. #ifndef HAVE_STRLCPY  
  45. /* 
  46.  * '_cups_strlcpy()' - Safely copy two strings. 
  47.  */  
  48.   
  49. size_t                  /* O - Length of string */  
  50. strlcpy(char       *dst,        /* O - Destination string */  
  51.               const char *src,      /* I - Source string */  
  52.           size_t      size)     /* I - Size of destination string buffer */  
  53. {  
  54.   size_t    srclen;         /* Length of source string */  
  55.   
  56.   
  57.  /* 
  58.   * Figure out how much room is needed... 
  59.   */  
  60.   
  61.   size --;  
  62.   
  63.   srclen = strlen(src);  
  64.   
  65.  /* 
  66.   * Copy the appropriate amount... 
  67.   */  
  68.   
  69.   if (srclen > size)  
  70.     srclen = size;  
  71.   
  72.   memcpy(dst, src, srclen);  
  73.   dst[srclen] = '\0';  
  74.   
  75.   return (srclen);  
  76. }  
  77. #endif /* !HAVE_STRLCPY */  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值