strxnmov.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2002 MySQL AB
  2.    
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2 of the License, or (at your option) any later version.
  7.    
  8.    This library is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Library General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17. /*  File   : strxnmov.c
  18.     Author : Richard A. O'Keefe.
  19.     Updated: 2 June 1984
  20.     Defines: strxnmov()
  21.     strxnmov(dst, len, src1, ..., srcn, NullS)
  22.     moves the first len characters of the concatenation of src1,...,srcn
  23.     to dst.  If there aren't that many characters, a NUL character will
  24.     be added to the end of dst to terminate it properly.  This gives the
  25.     same effect as calling strxcpy(buff, src1, ..., srcn, NullS) with a
  26.     large enough buffer, and then calling strnmov(dst, buff, len).
  27.     It is just like strnmov except that it concatenates multiple sources.
  28.     Beware: the last argument should be the null character pointer.
  29.     Take VERY great care not to omit it!  Also be careful to use NullS
  30.     and NOT to use 0, as on some machines 0 is not the same size as a
  31.     character pointer, or not the same bit pattern as NullS.
  32.     Note: strxnmov is like strnmov in that it moves up to len
  33.     characters; dst will be padded on the right with one NUL characters if
  34.     needed.
  35. */
  36. #include <my_global.h>
  37. #include "m_string.h"
  38. #include <stdarg.h>
  39. char *strxnmov(char *dst,uint len, const char *src, ...)
  40. {
  41.   va_list pvar;
  42.   char *end_of_dst=dst+len;
  43.   va_start(pvar,src);
  44.   while (src != NullS)
  45.   {
  46.     do
  47.     {
  48.       if (dst == end_of_dst)
  49. goto end;
  50.     }
  51.     while ((*dst++ = *src++));
  52.     dst--;
  53.     src = va_arg(pvar, char *);
  54.   }
  55.   *dst=0;
  56. end:
  57.   va_end(pvar);
  58.   return dst;
  59. }