This is the mail archive of the glibc-bugs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug libc/14876] Support for strptime with %Z is inconsistent between doc and code


http://sourceware.org/bugzilla/show_bug.cgi?id=14876

--- Comment #3 from paxdiablo <allachan at au1 dot ibm.com> 2012-11-28 07:20:47 UTC ---
FWIW, the following code may do the job:

    case 'Z':
        while (ISSPACE(*rp))
            rp++;
        while (!ISSPACE(*rp) && (*rp != '\0'))
            rp++;
        break;

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]