Home
last modified time | relevance | path

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

/haiku/src/kits/mail/
H A Dmail_util.cpp1300 char *zonePntr; in ParseDateWithTimeZone() local
1310 zonePntr = tempDateString + strlen (tempDateString) - 1; in ParseDateWithTimeZone()
1311 while (zonePntr >= tempDateString && isspace (*zonePntr)) in ParseDateWithTimeZone()
1312 *zonePntr-- = 0; in ParseDateWithTimeZone()
1313 if (zonePntr < tempDateString) in ParseDateWithTimeZone()
1321 zonePntr = strrchr (tempDateString, '('); in ParseDateWithTimeZone()
1322 if (zonePntr != NULL) in ParseDateWithTimeZone()
1324 *zonePntr-- = 0; // Zap the '(', then remove trailing spaces. in ParseDateWithTimeZone()
1325 while (zonePntr >= tempDateString && isspace (*zonePntr)) in ParseDateWithTimeZone()
1326 *zonePntr-- = 0; in ParseDateWithTimeZone()
[all …]