Mercurial > hg > cdb
view uint32.h2 @ 16:70f4df5a7283
add cdb_write,
log basic mmap outcomes
| author | Henry S. Thompson <ht@inf.ed.ac.uk> |
|---|---|
| date | Thu, 27 Feb 2025 18:26:29 +0000 |
| parents | 2cb46628feec |
| children |
line wrap: on
line source
#ifndef UINT32_H #define UINT32_H typedef unsigned long uint32; extern void uint32_pack(char *,uint32); extern void uint32_pack_big(char *,uint32); extern void uint32_unpack(char *,uint32 *); extern void uint32_unpack_big(char *,uint32 *); #endif
