kjv

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

intset.h (208B)


      1 #pragma once
      2 
      3 #include <stdbool.h>
      4 
      5 typedef struct intset intset;
      6 
      7 intset *intset_new();
      8 
      9 void intset_free(intset *set);
     10 
     11 void intset_add(intset *set, int item);
     12 
     13 bool intset_contains(intset *set, int item);