aboutsummaryrefslogtreecommitdiffstats
path: root/port.hpp
blob: 366f498c70ae981a20fa4c033a2f72db731a42d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef MBUOY_PORT_HPP
#define MBUOY_PORT_HPP

#include <cstdio>

namespace mbuoy {
namespace port {

inline void puts(int x, int y, const char *s)
{
    std::printf("[%d, %d]: %s\n", x, y, s);
}

} // namespace port
} // namespace mbuoy

#endif // MBUOY_PORT_HPP