release
[hcoop/zz_old/debian/djbdns.git] / uint16.h
1 #ifndef UINT16_H
2 #define UINT16_H
3
4 typedef unsigned short uint16;
5
6 extern void uint16_pack(char *,uint16);
7 extern void uint16_pack_big(char *,uint16);
8 extern void uint16_unpack(const char *,uint16 *);
9 extern void uint16_unpack_big(const char *,uint16 *);
10
11 #endif