/* * include needed system headers */ #include /* include standard i/o library */ #include /* include standard library */ #include /* include string library */ #include /* include unix standard library */ #include /* */ #include /* */ #include /* */ #include /* error simbol definitions */ #include /* system time definitions */ #include /* math library */ void skipbyte_(int *fd) { int nhead; nhead = 13; /*** goes back 13 words, then half 16 bit word ahead ***/ lseek(*fd, -2*nhead, SEEK_CUR); //SEEK_CUR ---> from current position lseek(*fd, 1, SEEK_CUR); }