#ifndef UTIL_H_
#define UTIL_H_

#include "pair.h"

// a useful function
struct pair *make_pair(int a, int b);

#endif  // UTIL_H_