44 lines
1.1 KiB
C
44 lines
1.1 KiB
C
/* $NetBSD: binio.h,v 1.1.1.1 2000/03/29 12:38:48 simonb Exp $ */
|
|
|
|
/*
|
|
* /src/NTP/ntp-4/include/binio.h,v 4.2 1998/06/28 16:52:15 kardel RELEASE_19990228_A
|
|
*
|
|
* Created: Sun Jul 20 13:03:05 1997
|
|
*
|
|
* Copyright (C) 1997-1998 by Frank Kardel
|
|
*/
|
|
#ifndef BINIO_H
|
|
#define BINIO_H
|
|
|
|
#include "ntp_stdlib.h"
|
|
|
|
long get_lsb_short P((unsigned char **));
|
|
void put_lsb_short P((unsigned char **, long));
|
|
long get_lsb_long P((unsigned char **));
|
|
void put_lsb_long P((unsigned char **, long));
|
|
|
|
long get_msb_short P((unsigned char **));
|
|
void put_msb_short P((unsigned char **, long));
|
|
long get_msb_long P((unsigned char **));
|
|
void put_msb_long P((unsigned char **, long));
|
|
|
|
#endif
|
|
/*
|
|
* binio.h,v
|
|
* Revision 4.2 1998/06/28 16:52:15 kardel
|
|
* added binio MSB prototypes for {get,put}_msb_{short,long}
|
|
*
|
|
* Revision 4.1 1998/06/12 15:07:40 kardel
|
|
* fixed prototyping
|
|
*
|
|
* Revision 4.0 1998/04/10 19:50:38 kardel
|
|
* Start 4.0 release version numbering
|
|
*
|
|
* Revision 1.1 1998/04/10 19:27:32 kardel
|
|
* initial NTP VERSION 4 integration of PARSE with GPS166 binary support
|
|
*
|
|
* Revision 1.1 1997/10/06 20:55:37 kardel
|
|
* new parse structure
|
|
*
|
|
*/
|