| 510 | } |
| 511 | |
| 512 | static const char * getqzname(const char *strp, const int delim) { |
| 513 | int c; |
| 514 | |
| 515 | while ((c = *strp) != '\0' && c != delim) |
| 516 | ++strp; |
| 517 | return strp; |
| 518 | } |
| 519 | |
| 520 | static const char * getoffset(const char *strp, int_fast32_t *const offsetp) { |
| 521 | int neg = 0; |