summaryrefslogtreecommitdiff
path: root/src/bin/xi/xi2path.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/xi/xi2path.c')
-rw-r--r--src/bin/xi/xi2path.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/bin/xi/xi2path.c b/src/bin/xi/xi2path.c
new file mode 100644
index 0000000..4b4c519
--- /dev/null
+++ b/src/bin/xi/xi2path.c
@@ -0,0 +1,16 @@
+#include <stdlib.h>
+#include <err.h>
+
+#include "xi2path.h"
+
+int
+main(int argc, char *argv[])
+{
+ if (argc < 2)
+ errx(EXIT_FAILURE, "usage: %s id", argv[0]);
+
+ char path[12];
+ xi2path(path, strtol(argv[1], NULL, 10));
+ printf("%s\n", path);
+ return EXIT_SUCCESS;
+}