aboutsummaryrefslogtreecommitdiff
path: root/contrib/ntp/include/binio.h
blob: 49feee9a21c9374a3de082193d24197a3c454698 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
 * /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
 *
 */