| 506 | } |
| 507 | |
| 508 | int |
| 509 | dlb_fseek(dlb *dp, long pos, int whence) |
| 510 | { |
| 511 | if (!dlb_initialized) |
| 512 | return EOF; |
| 513 | if (dp->fp) |
| 514 | return fseek(dp->fp, pos, whence); |
| 515 | return do_dlb_fseek(dp, pos, whence); |
| 516 | } |
| 517 | |
| 518 | char * |
| 519 | dlb_fgets(char *buf, int len, dlb *dp) |
no test coverage detected