Searched refs:tempZoneString (Results 1 – 1 of 1) sorted by relevance
1297 char tempZoneString[6]; in ParseDateWithTimeZone() local1349 memcpy (tempZoneString, zonePntr, 5); in ParseDateWithTimeZone()1350 tempZoneString [5] = 0; in ParseDateWithTimeZone()1354 strcpy (tempZoneString, "+0000"); in ParseDateWithTimeZone()1361 zoneDeltaTime = 60 * atol (tempZoneString + 3); // Get the last two digits - minutes. in ParseDateWithTimeZone()1362 tempZoneString[3] = 0; in ParseDateWithTimeZone()1363 zoneDeltaTime += atol (tempZoneString + 1) * 60 * 60; // Get the first two digits - hours. in ParseDateWithTimeZone()1364 if (tempZoneString[0] == '+') in ParseDateWithTimeZone()