From 25f6ec08bf8732908a215205c7818d59535b51b9 Mon Sep 17 00:00:00 2001 From: delphij Date: Thu, 25 Jun 2009 23:59:23 +0000 Subject: Implement %z for strptime. PR: kern/63064 Submitted by: Stefan `Sec` Zehl (with some small changes) MFC after: 1 month --- lib/libc/stdtime/strptime.c | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'lib/libc') diff --git a/lib/libc/stdtime/strptime.c b/lib/libc/stdtime/strptime.c index ddf6b57..c7de35c 100644 --- a/lib/libc/stdtime/strptime.c +++ b/lib/libc/stdtime/strptime.c @@ -514,6 +514,34 @@ label: } } break; + + case 'z': + { + int sign = 1; + + if (*buf != '+') { + if (*buf == '-') + sign = -1; + else + return 0; + } + + buf++; + i = 0; + for (len = 4; len > 0; len--) { + if (isdigit((int)*buf)) { + i *= 10; + i += *buf - '0'; + buf++; + } else + return 0; + } + + tm->tm_hour -= sign * (i / 100); + tm->tm_min -= sign * (i % 100); + *GMTp = 1; + } + break; } } return (char *)buf; -- cgit v1.1