#ifndef _UTIL_H_
#define _UTIL_H_

#include "pair.h"

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

#endif  // _UTIL_H_