1 /* 2 * /src/NTP/ntp-4/include/binio.h,v 4.2 1998/06/28 16:52:15 kardel RELEASE_19990228_A 3 * 4 * $Created: Sun Jul 20 13:03:05 1997 $ 5 * 6 * Copyright (C) 1997-1998 by Frank Kardel 7 */ 8 #ifndef BINIO_H 9 #define BINIO_H 10 11 #include "ntp_stdlib.h" 12 13 long get_lsb_short P((unsigned char **)); 14 void put_lsb_short P((unsigned char **, long)); 15 long get_lsb_long P((unsigned char **)); 16 void put_lsb_long P((unsigned char **, long)); 17 18 long get_msb_short P((unsigned char **)); 19 void put_msb_short P((unsigned char **, long)); 20 long get_msb_long P((unsigned char **)); 21 void put_msb_long P((unsigned char **, long)); 22 23 #endif 24 /* 25 * binio.h,v 26 * Revision 4.2 1998/06/28 16:52:15 kardel 27 * added binio MSB prototypes for {get,put}_msb_{short,long} 28 * 29 * Revision 4.1 1998/06/12 15:07:40 kardel 30 * fixed prototyping 31 * 32 * Revision 4.0 1998/04/10 19:50:38 kardel 33 * Start 4.0 release version numbering 34 * 35 * Revision 1.1 1998/04/10 19:27:32 kardel 36 * initial NTP VERSION 4 integration of PARSE with GPS166 binary support 37 * 38 * Revision 1.1 1997/10/06 20:55:37 kardel 39 * new parse structure 40 * 41 */ 42