s/qmail  3.3.23
Next generation secure email transport
uint64.h
Go to the documentation of this file.
1 /* Public domain. */
2 
3 #ifndef UINT64_H
4 #define UINT64_H
5 
6 /* sysdep: -ulong64 */
7 
8 typedef unsigned long long uint64;
9 
10 void uint64_pack(char *,uint64);
11 void uint64_pack_big(char *,uint64);
12 void uint64_unpack(const char *,uint64 *);
13 void uint64_unpack_big(const char *,uint64 *);
14 
15 #endif
void uint64_unpack_big(const char *, uint64 *)
void uint64_pack(char *, uint64)
void uint64_pack_big(char *, uint64)
void uint64_unpack(const char *, uint64 *)
unsigned long long uint64
Definition: uint64.h:8