File: uint64.h

package info (click to toggle)
bglibs 2.04%2Bdfsg-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,468 kB
  • sloc: ansic: 15,821; perl: 674; sh: 63; makefile: 29
file content (21 lines) | stat: -rw-r--r-- 508 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef UINT64_H
#define UINT64_H

#include "sysdeps.h"
#include "uintnn.h"
__UINTNN_DECL(64,8)
#define uint64_get uint64_get_lsb
#define uint64_pack uint64_pack_lsb
#define uint64_unpack uint64_unpack_lsb

#ifdef ENDIAN_LSB
#define uint64_get_native uint64_get_lsb
#define uint64_pack_native uint64_pack_lsb
#define uint64_unpack_native uint64_unpack_lsb
#else
#define uint64_get_native uint64_get_msb
#define uint64_pack_native uint64_pack_msb
#define uint64_unpack_native uint64_unpack_msb
#endif

#endif