offset_str        582 lib/common/iso8601.c crm_time_parse_offset(const char *offset_str)
offset_str        587 lib/common/iso8601.c     if (offset_str == NULL) {
offset_str        601 lib/common/iso8601.c     } else if (offset_str[0] == 'Z') {
offset_str        603 lib/common/iso8601.c     } else if (offset_str[0] == '+' || offset_str[0] == '-' || isdigit((int)offset_str[0])) {
offset_str        606 lib/common/iso8601.c         if (offset_str[0] == '-') {
offset_str        608 lib/common/iso8601.c             offset_str++;
offset_str        610 lib/common/iso8601.c         offset = crm_time_parse_sec(offset_str);