view uint32.h2 @ 6:fb33dc49cd48

use .ac by hand for the time being
author Henry S. Thompson <ht@inf.ed.ac.uk>
date Wed, 29 Jan 2025 12:43:39 +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