home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / mysys / my_vsnprintf.c < prev    next >
C/C++ Source or Header  |  2000-11-17  |  2KB  |  71 lines

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult 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.  
  18. #include "mysys_priv.h"
  19. #include "mysys_err.h"
  20. #include <m_string.h>
  21. #include <stdarg.h>
  22. #include <m_ctype.h>
  23.  
  24. int my_vsnprintf(char *to, size_t n, const char* fmt, va_list ap)
  25. {
  26.   char *start=to, *end=to+n-1;
  27.  
  28.   for (; *fmt ; fmt++)
  29.   {
  30.     if (fmt[0] != '%')
  31.     {
  32.       if (to == end)            /* End of buffer */
  33.     break;
  34.       *to++= *fmt;            /* Copy ordinary char */
  35.       continue;
  36.     }
  37.     /* Skipp if max size is used (to be compatible with printf) */
  38.     fmt++;
  39.     while (isdigit(*fmt) || *fmt == '.' || *fmt == '-')
  40.       fmt++;
  41.     if (*fmt == 's')                /* String parameter */
  42.     {
  43.       reg2 char    *par = va_arg(ap, char *);
  44.       uint plen = (uint) strlen(par);
  45.       if ((uint) (end-to) > plen)    /* Replace if possible */
  46.       {
  47.     to=strmov(to,par);
  48.     continue;
  49.       }
  50.     }
  51.     else if (*fmt == 'd' || *fmt == 'u')    /* Integer parameter */
  52.     {
  53.       register int iarg;
  54.       if ((uint) (end-to) < 16)
  55.     break;
  56.       iarg = va_arg(ap, int);
  57.       if (*fmt == 'd')
  58.     to=int10_to_str((long) iarg,to, -10);
  59.       else
  60.     to=int10_to_str((long) (uint) iarg,to,10);
  61.       continue;
  62.     }
  63.     /* We come here on '%%', unknown code or too long parameter */
  64.     if (to == end)
  65.       break;
  66.     *to++='%';                /* % used as % or unknown code */
  67.   }
  68.   *to='\0';                /* End of errmessage */
  69.   return (uint) (to - start);
  70. }
  71.