summaryrefslogtreecommitdiff
path: root/src/include/skalibs/diuint32.h
blob: cd8ae7501e9776821f1ba0200832ae349abf18d1 (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 <skalibs/uint32.h>

typedef struct diuint32 diuint32, *diuint32_ref ;
struct diuint32
{
  uint32 left ;
  uint32 right ;
} ;

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

#endif