/* * Hacking bonds */ #ifndef BOND_H #define BOND_H typedef struct { int first, second; } bond; extern void init_bond (bond * b, int f, int s); #endif