ack/modules/src/object/rd_ranlib.c
1987-03-09 15:15:03 +00:00

25 lines
557 B
C

/*
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*/
#include <ranlib.h>
#include "object.h"
rd_ranlib(fd, ran, cnt)
register struct ranlib *ran;
register long cnt;
{
rd_bytes(fd, (char *) ran, cnt * SZ_RAN);
#if ! (BYTES_REVERSED || WORDS_REVERSED)
if (sizeof (struct ranlib) != SZ_RAN)
#endif
{
register char *c = (char *) ran;
while (cnt--) {
ran->ran_off = get4(c); c += 4;
ran->ran_pos = get4(c); c += 4;
ran++;
}
}
}