aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Makefile1
-rw-r--r--libj2_j2i_to_str.c14
2 files changed, 15 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 5750c29..ff45328 100644
--- a/Makefile
+++ b/Makefile
@@ -300,6 +300,7 @@ OBJ =\
libj2_j2u_sat_mul_j2u.o\
libj2_j2u_sat_mul_j2u_to_j2u.o\
libj2_j2u_to_str.o\
+ libj2_j2i_to_str.o\
libj2_str_to_j2u.o\
libj2_str_to_j2u_sign.o\
libj2_str_to_j2i.o\
diff --git a/libj2_j2i_to_str.c b/libj2_j2i_to_str.c
new file mode 100644
index 0000000..e568c1a
--- /dev/null
+++ b/libj2_j2i_to_str.c
@@ -0,0 +1,14 @@
+/* See LICENSE file for copyright and license details. */
+#include "common.h"
+#ifndef TEST
+
+/* TODO Add man page */
+extern inline size_t libj2_j2i_to_str(const struct libj2_j2i *a, char *buf, size_t bufsize, const char *digits);
+
+
+#else
+
+CONST int main(void) { return 0; }
+/* TODO test */
+
+#endif