make_times_h.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2. This program generates the "times.h" file with the zulu-times of the first of
  3. every month of a decade.
  4. */
  5. /****************************************************************
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2, or (at your option)
  9.  * any later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software
  18.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  *
  20.  ****************************************************************/
  21. #include <time.h>
  22. #include <stdio.h>
  23. static time_t GetDay(int D,int M,int Y)
  24. {
  25. struct tm TM;
  26. TM.tm_sec     = 0;
  27. TM.tm_min = 0;
  28. TM.tm_hour = 0;
  29. TM.tm_mday = D;
  30. TM.tm_mon = M;
  31. TM.tm_wday = 0;
  32. TM.tm_yday = 0;
  33. TM.tm_year = Y-1900;
  34. TM.tm_isdst = 0;
  35. return mktime(&TM);
  36. }
  37. static int WeekGetDay(int D,int M,int Y)
  38. {
  39. struct tm TM;
  40. TM.tm_sec     = 0;
  41. TM.tm_min = 0;
  42. TM.tm_hour = 0;
  43. TM.tm_mday = D;
  44. TM.tm_mon = M;
  45. TM.tm_year = Y-1900;
  46. TM.tm_isdst = 0;
  47. TM.tm_wday = 0;
  48. TM.tm_yday = 0;
  49. (void)mktime(&TM);
  50. return TM.tm_wday;
  51. }
  52. int main(void)
  53. {
  54. int M,Y;
  55. FILE *file;
  56. file=fopen("times.h","w");
  57. if (file==NULL) 
  58. return 0; 
  59. fprintf(file,"static time_t TimeDays[10][13] = { n");
  60. Y=1997;
  61. while (Y<2007)
  62. {
  63. M=0;
  64. fprintf(file," { ");
  65. while (M<12)
  66. {
  67. fprintf(file,"%i",(int)GetDay(1,M,Y));
  68.          fprintf(file,",t");
  69. M++;
  70. }
  71. fprintf(file,"%i } ",(int)GetDay(1,0,Y+1));
  72. if (Y!=2006) fprintf(file,",");
  73. fprintf(file,"n");
  74. Y++;
  75. }
  76. fprintf(file,"};n");
  77. fprintf(file,"static int WeekDays[10][13] = { n");
  78. Y=1997;
  79. while (Y<2007)
  80. {
  81. M=0;
  82. fprintf(file," { ");
  83. while (M<12)
  84. {
  85. fprintf(file,"%i",(int)WeekGetDay(1,M,Y));
  86.          fprintf(file,",t");
  87. M++;
  88. }
  89. fprintf(file,"%i } ",(int)WeekGetDay(1,0,Y+1));
  90. if (Y!=2006) fprintf(file,",");
  91. fprintf(file,"n");
  92. Y++;
  93. }
  94. fprintf(file,"};n");
  95. fprintf(file,"#define KHTTPD_YEAROFFSET   1997n");
  96. fprintf(file,"#define KHTTPD_NUMYEARS     10n");
  97. (void)fclose(file);
  98. return 0;
  99. }