skalibs

Mirror/fork of https://skarnet.org/software/skalibs/
git clone https://ccx.te2000.cz/git/skalibs
Log | Files | Refs | README | LICENSE

devino.h (296B)


      1 /* ISC license. */
      2 
      3 #ifndef SKALIBS_DEVINO_H
      4 #define SKALIBS_DEVINO_H
      5 
      6 #include <sys/types.h>
      7 
      8 typedef struct devino_s devino, *devino_ref ;
      9 struct devino_s
     10 {
     11   dev_t dev ;
     12   ino_t ino ;
     13 } ;
     14 #define DEVINO_ZERO { .dev = 0, .ino = 0 }
     15 
     16 extern int devino_cmp (void const *, void const *) ;
     17 
     18 #endif