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

#ifndef DIUINT_H
#define DIUINT_H

typedef struct diuint diuint, *diuint_ref ;
struct diuint
{
  unsigned int left ;
  unsigned int right ;
} ;

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

#endif