Mercurial > hg > cdb
view uint32.h1 @ 14:b7bbc84fe17f
increase buffer size (did not appear to help)
| author | Henry S. Thompson <ht@inf.ed.ac.uk> |
|---|---|
| date | Fri, 07 Feb 2025 14:44:07 +0000 |
| parents | 2cb46628feec |
| children |
line wrap: on
line source
#ifndef UINT32_H #define UINT32_H typedef unsigned int 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
