/*	trans.h (UKC) 1.4 23/9/86	*/
sendchar(); sendbyte(); sendshort(); sendlong(); sendbuf(); sendstring();
char recvchar();
char recvbyte();
short recvshort();
long recvlong();
int recvbuf();
int recvstring();
char **recvvstruct();

#define recvint(fd) ( (int) recvlong(fd) )
#define sendint(fd,x) ( sendlong((fd), (long) (x)) )
