structs-guile/structs.h

#ifndef STRUCTS_H
#define STRUCTS_H

struct body {
  char *format;
  char *text;
};

struct page {
  char *title;
  struct body *body;
};

#endif