From 00f84e3b984904e36cbee502a470003ecd7d09cf Mon Sep 17 00:00:00 2001 From: Clyne Sullivan <clyne@bitgloo.com> Date: Sat, 10 Aug 2024 10:46:54 -0400 Subject: initial upload --- port.hpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 port.hpp (limited to 'port.hpp') diff --git a/port.hpp b/port.hpp new file mode 100644 index 0000000..366f498 --- /dev/null +++ b/port.hpp @@ -0,0 +1,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 + -- cgit v1.2.3