strxmov.c
Upload User: tsgydb
Upload Date: 2007-04-14
Package Size: 10674k
Code Size: 1k
Category:

MySQL

Development Platform:

Visual C++

  1. /*  File   : strxmov.c
  2.     Author : Richard A. O'Keefe.
  3.     Updated: 25 may 1984
  4.     Defines: strxmov()
  5.     strxmov(dst, src1, ..., srcn, NullS)
  6.     moves the concatenation of src1,...,srcn to dst, terminates it
  7.     with a NUL character, and returns a pointer to the terminating NUL.
  8.     It is just like strmov except that it concatenates multiple sources.
  9.     Beware: the last argument should be the null character pointer.
  10.     Take VERY great care not to omit it!  Also be careful to use NullS
  11.     and NOT to use 0, as on some machines 0 is not the same size as a
  12.     character pointer, or not the same bit pattern as NullS.
  13. */
  14. #include <global.h>
  15. #include "m_string.h"
  16. #include <stdarg.h>
  17. char *strxmov(char *dst,const char *src, ...)
  18. {
  19.   va_list pvar;
  20.   va_start(pvar,src);
  21.   while (src != NullS) {
  22.     while ((*dst++ = *src++)) ;
  23.     dst--;
  24.     src = va_arg(pvar, char *);
  25.   }
  26.   va_end(pvar);
  27.   *dst = 0; /* there might have been no sources! */
  28.   return dst;
  29. }