packages feed

c2hs-0.28.7: tests/bugs/issue-257/issue257.h

#ifndef _BOOLS_H
#define _BOOLS_H
#include <stdbool.h>

struct bools {
  bool a;
  bool b;
  bool c;
  bool d;
};

struct bools* make_bools(bool a, bool b, bool c, bool d);

#endif /* _BOOLS_H */