2
0
Derivar 0

Enabled @ as indicator of UTC seconds in timestrings

Este cometimento está contido em:
Thomas Schmitt 2008-10-30 11:44:13 +00:00
ascendente c17edd608e
cometimento cf920a350d
2 ficheiros modificados com 3 adições e 3 eliminações

Ver ficheiro

@ -1348,13 +1348,13 @@ time_t Decode_timestring(char *code, time_t *date, int flag)
*date= 0;
cpt= code;
if(code[0]=='-' || code[0]=='+' || code[0]=='='){
if(code[0]=='-' || code[0]=='+' || code[0]=='=' || code[0]=='@'){
if(code[1]==0)
return(0);
if(!isdigit(code[1]))
return(0);
value= -1;
if(code[0]=='=') {
if(code[0]=='=' || code[0]=='@') {
seconds= 0;
sscanf(code+1,"%lf",&value);
} else {

Ver ficheiro

@ -1 +1 @@
#define Xorriso_timestamP "2008.10.30.110049"
#define Xorriso_timestamP "2008.10.30.114313"