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 / mf_getdate.c < prev    next >
C/C++ Source or Header  |  2000-09-26  |  2KB  |  66 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. /* Get date in a printable form: yyyy-mm-dd hh:mm:ss */
  19.  
  20. #include "mysys_priv.h"
  21. #include <m_string.h>
  22.  
  23.     /*
  24.       If flag & 1 Return date and time
  25.       If flag & 2 Return short date format YYMMDD
  26.       if flag & 4 Return time in HHMMDD format.
  27.       */
  28.  
  29.  
  30. void get_date(register my_string to, int flag, time_t date)
  31. {
  32.    reg2 struct tm *start_time;
  33.    time_t skr;
  34. #if defined(HAVE_LOCALTIME_R) && defined(_REENTRANT)
  35.   struct tm tm_tmp;
  36. #endif
  37.  
  38.    skr=date ? (time_t) date : time((time_t*) 0);
  39. #if defined(HAVE_LOCALTIME_R) && defined(_REENTRANT)
  40.    localtime_r(&skr,&tm_tmp);
  41.    start_time= &tm_tmp;
  42. #else
  43.    start_time=localtime(&skr);
  44. #endif
  45.    if (flag & 2)
  46.      sprintf(to,"%02d%02d%02d",
  47.          start_time->tm_year % 100,
  48.          start_time->tm_mon+1,
  49.          start_time->tm_mday);
  50.    else
  51.      sprintf(to,"%d-%02d-%02d",
  52.          start_time->tm_year+1900,
  53.          start_time->tm_mon+1,
  54.          start_time->tm_mday);
  55.    if (flag & 1)
  56.      sprintf(strend(to)," %2d:%02d:%02d",
  57.          start_time->tm_hour,
  58.          start_time->tm_min,
  59.          start_time->tm_sec);
  60.    else if (flag & 4)
  61.      sprintf(strend(to),"%02d%02d%02d",
  62.          start_time->tm_hour,
  63.          start_time->tm_min,
  64.          start_time->tm_sec);
  65. } /* get_date */
  66.