Home
last modified time | relevance | path

Searched refs:qsotime (Results 1 – 4 of 4) sorted by relevance

/dports/comms/tlf/tlf-tlf-1.4.1/src/
H A Daddcall.c116 worked[i].qsotime[trxmode][bandinx] = (long)mktime(time_ptr); in addcall()
294 struct tm qsotime; in addcall2() local
319 memset(&qsotime, 0, sizeof(struct tm)); in addcall2()
321 strptime(date_and_time, "%d-%b-%y %H:%M", &qsotime); in addcall2()
322 qsotimets = mktime(&qsotime); in addcall2()
324 worked[i].qsotime[trxmode][bandinx] = qsotimets; in addcall2()
H A Dreadcalls.c71 worked[i].qsotime[l][n] = 0; in init_scoring()
225 struct tm qsotime; in readcalls() local
331 memset(&qsotime, 0, sizeof(struct tm)); in readcalls()
332 strptime(inputbuffer + 7, "%d-%b-%y %H:%M", &qsotime); in readcalls()
333 worked[l].qsotime[qsomode][bandindex] = mktime(&qsotime); in readcalls()
H A Dtlf.h153 long qsotime[3][NBANDS]; /**< last timestamp of qso in gmtime member
H A Dsearchlog.c429 return worked[found].qsotime[trxmode][bandinx] >= period_start; in worked_in_current_minitest_period()