Initial revision

This commit is contained in:
ceriel
1987-01-05 17:31:38 +00:00
parent ad0cab046a
commit 76d4ac5194
18 changed files with 1193 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#include "object.h"
unsigned int
rd_unsigned2(fd)
{
char buf[2];
rd_bytes(fd, buf, 2L);
return uget2(buf);
}