/***********************************************************************1* *2* This software is part of the ast package *3* Copyright (c) 1985-2011 AT&T Intellectual Property *4* and is licensed under the *5* Eclipse Public License, Version 1.0 *6* by AT&T Intellectual Property *7* *8* A copy of the License is available at *9* http://www.eclipse.org/org/documents/epl-v10.html *10* (with md5 checksum b35adb5213ca9657e911e9befb180842) *11* *12* Information and Software Systems Research *13* AT&T Research *14* Florham Park NJ *15* *16* Glenn Fowler <[email protected]> *17* David Korn <[email protected]> *18* Phong Vo <[email protected]> *19* *20***********************************************************************/21#pragma prototyped22/*23* Glenn Fowler24* AT&T Bell Laboratories25*26* time conversion support27*/2829#include <ast.h>30#include <tm.h>31#include <ctype.h>3233/*34* return minutes offset from absolute timezone expression35*36* [[-+]hh[:mm[:ss]]]37* [-+]hhmm38*39* if e is non-null then it points to the first unrecognized char in s40* d returned if no offset in s41*/4243int44tmgoff(register const char* s, char** e, int d)45{46register int n = d;47int east;48const char* t = s;4950if ((east = *s == '+') || *s == '-')51{52s++;53if (isdigit(*s) && isdigit(*(s + 1)))54{55n = ((*s - '0') * 10 + (*(s + 1) - '0')) * 60;56s += 2;57if (*s == ':')58s++;59if (isdigit(*s) && isdigit(*(s + 1)))60{61n += ((*s - '0') * 10 + (*(s + 1) - '0'));62s += 2;63if (*s == ':')64s++;65if (isdigit(*s) && isdigit(*(s + 1)))66s += 2;67}68if (east)69n = -n;70t = s;71}72}73if (e)74*e = (char*)t;75return n;76}777879