Lines Matching defs:sLocal
24073 struct tm sLocal;
24076 /* Initialize the contents of sLocal to avoid a compiler warning. */
24077 memset(&sLocal, 0, sizeof(sLocal));
24099 if( osLocaltime(&t, &sLocal) ){
24103 p->Y = sLocal.tm_year + 1900 - iYearDiff;
24104 p->M = sLocal.tm_mon + 1;
24105 p->D = sLocal.tm_mday;
24106 p->h = sLocal.tm_hour;
24107 p->m = sLocal.tm_min;
24108 p->s = sLocal.tm_sec + (p->iJD%1000)*0.001;