summaryrefslogtreecommitdiff
path: root/src/include/skalibs/diuint32.h
blob: fb0a2de6100ec57591130595515881ec1ddae662 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* ISC license. */

#ifndef DIUINT32_H
#define DIUINT32_H

#include <stdint.h>

typedef struct diuint32_s diuint32, *diuint32_ref ;
struct diuint32_s
{
  uint32_t left ;
  uint32_t right ;
} ;

#define DIUINT32_ZERO { .left = 0, .right = 0 }

#endif