mf_getdate.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

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