#include #include "util.h" struct Pair* MakePair(int a, int b) { struct Pair* ptr = malloc(sizeof(struct Pair)); if (ptr == NULL) { return NULL; } ptr->a = a; ptr->b = b; return ptr; }