testing-repository/cpp/xerelease7-x86/xeapi.cpp

10 lines
271 B
C++
Raw Normal View History

2020-10-23 22:29:11 +08:00
#include<time.h>
int xeapi1(struct tm *local){
int year1=2019,month1=6,apiver=0;
int year2=local->tm_year+1900,month2=local->tm_mon+1;
//printf("%d %d",year1,year2);
apiver=(year2-year1)*12-month1+month2+22;
if(local->tm_mday<7) apiver--;
return apiver;
}