- 论坛徽章:
- 0
|
Linux
GCC
- #include <stdio.h>;
- #include <time.h>;
- long
- convert2Sec(char *date){
- //2005-02-04 23:35:53
- time_t t;
- char *year;
- char *month;
- char *day;
- char *hour;
- char *min;
- char *sec;
- struct tm time_str;
- int i_year;
- int i_month;
- year = date;
- date += 4;
- *(date) = '\0';
- month = (++date);
- date += 2;
- *(date) = '\0';
- day = ++date;
- date += 2;
- *(date) = '\0';
- hour = ++date;
- date += 2;
- *(date) = '\0';
- min = ++date;
- date += 2;
- *(date) = '\0';
- sec = ++date;
- //printf("Year:%s Mon:%s Day:%s Hour:%s Min:%s Sec:%s\n",year,month,day,hour,min,sec);
- //i_year = atoi(year) - 1900;
- time_str.tm_year = atoi(year) - 1900;
- //i_month = atoi(month) - 1;
- time_str.tm_mon = atoi(month) - 1;
- time_str.tm_mday = atoi(day);
- time_str.tm_hour = atoi(hour);
- time_str.tm_min = atoi(min);
- time_str.tm_sec = atoi(sec);
- time_str.tm_isdst = -1;
- t =mktime(&time_str);
- //printf("Inside Time:%ld",t);
- return t;
- }
- main(argc, argv)
- int argc;
- char *argv[];
- {
- char date[255];
- char tmp[255];
- char *line;
- FILE *in;
- FILE *out;
- char *st_date = date;
- char *end_date = date;
- char c;
- long st;
- long end;
- line = tmp;
- if(( in = fopen(argv[1],"r" )) == NULL){
- printf("Can't read input file:%s\n",argv[1]);
- exit(0);
- }
- else
- printf("Reading file:%s\n",argv[1]);
- if(( out = fopen(argv[2],"w" )) == NULL){
- printf("Can't read input file:%s\n",argv[2]);
- exit(0);
- }
- else
- printf("Reading file:%s\n",argv[2]);
- while(!feof(in)){
- c = fgetc(in);
- if( c == '\n'){
- *line = '\0';
- line = tmp;
- //printf("Line:%s\n",line);
- //Count duration
- st_date = line;
- line += 19;
- *line++ = '\0';
- end_date = line;
- //Note the date in convert2Sec method would be changed.
- //fprintf(out,"%s %s",st_date,end_date);
- printf("%s %s",st_date,end_date);
- st = convert2Sec(st_date);
- end = convert2Sec(end_date);
- //printf("%ld %ld ",st,end);
- //fprintf(out,"%ld\n",end-st);
- printf("%ld\n",(end-st));
- //Back to start
- line = tmp;
- }
- else
- *line++ = c;
- }
- fclose(in);
- fclose(out);
- return 0;
- }
复制代码
conver2Sec的入口参数是一个char*,这里我会对其指针操作,调用完conver2Sec后,char*指针已经指到其它地方,如果直接打印,一定是错误的数据,请问好的解决方法是什么?
我相到的
1.函数内,将入口char*复制一份
2.函数外,将入口char*复制一份
但这样的话,临时变量不就变得相当多了?
请各位大侠修改上面一下的program,多谢
文件输入内容:
2005-02-05 16:21:48 2005-02-05 16:22:21
2005-02-05 16:20:54 2005-02-05 16:22:23
2005-02-05 16:22:13 2005-02-05 16:22:24
2005-02-05 16:21:31 2005-02-05 16:22:26
文件输出内容
2005-02-05 16:21:48 2005-02-05 16:22:21 33
2005-02-05 16:20:54 2005-02-05 16:22:23 89
2005-02-05 16:22:13 2005-02-05 16:22:24 11
2005-02-05 16:21:31 2005-02-05 16:22:26 55 |
|