#ifndef UTIL_H
#define UTIL_H

#include <stdbool.h>

typedef struct optional_int {
    bool result;
    int value;
} optional_int_t;

#endif /* UTIL_H */