11 lines
114 B
C
11 lines
114 B
C
|
#include "object.h"
|
||
|
|
||
|
unsigned int
|
||
|
rd_unsigned2(fd)
|
||
|
{
|
||
|
char buf[2];
|
||
|
|
||
|
rd_bytes(fd, buf, 2L);
|
||
|
return uget2(buf);
|
||
|
}
|