summaryrefslogtreecommitdiff
path: root/format
diff options
context:
space:
mode:
Diffstat (limited to 'format')
-rw-r--r--format/buildfile8
-rw-r--r--format/format8
-rw-r--r--format/format.cxx11
3 files changed, 27 insertions, 0 deletions
diff --git a/format/buildfile b/format/buildfile
new file mode 100644
index 0000000..4edb840
--- /dev/null
+++ b/format/buildfile
@@ -0,0 +1,8 @@
+lib{format}: {hxx cxx}{format}
+
+cxx.poptions += -I$src_root
+lib{format}: cxx.export.poptions = -I$src_root
+
+# Install into the format/ subdirectory of, say, /usr/include/.
+#
+install.include = $install.include/format
diff --git a/format/format b/format/format
new file mode 100644
index 0000000..6c4d5f8
--- /dev/null
+++ b/format/format
@@ -0,0 +1,8 @@
+// file: format/format -*- C++ -*-
+
+#pragma once
+
+#include <string>
+
+std::string
+format (const std::string& greeting, const std::string& name);
diff --git a/format/format.cxx b/format/format.cxx
new file mode 100644
index 0000000..0566e78
--- /dev/null
+++ b/format/format.cxx
@@ -0,0 +1,11 @@
+// file: format/format.cxx -*- C++ -*-
+
+#include <format/format>
+
+using namespace std;
+
+string
+format (const string& g, const string& n)
+{
+ return g + ", " + n + '!';
+}