aboutsummaryrefslogtreecommitdiffstats
path: root/port.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2024-08-10 10:46:54 -0400
committerClyne Sullivan <clyne@bitgloo.com>2024-08-10 10:46:54 -0400
commit00f84e3b984904e36cbee502a470003ecd7d09cf (patch)
tree48836b7af6dc55724f789a75ebed4a7ce01be5fc /port.hpp
parente6dfad81f8c893f95fe2922a075b82e2d262bde2 (diff)
initial upload
Diffstat (limited to 'port.hpp')
-rw-r--r--port.hpp18
1 files changed, 18 insertions, 0 deletions
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
+