I saw that it is still there in mnogosearch-3.1.9.pre12...

taken from search_tl.c:
-------------
time_t dmy2time_t(char *str){
 struct tm t;
 time_t ts;
 
 UDMMEMZERO(&t, sizeof(t));
 strptime(str, "%d/%m/%Y", &t);
 ts=mktime(&t);
/* printf("dmy2time_t(%s)=%li\n", str, ts); */
 if (ts>0)
  return ts-tz_offset;
 else
  return -1; /* error */
}
-------------

______________
If you want to unsubscribe send "unsubscribe udmsearch"
to [EMAIL PROTECTED]

Reply via email to