summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_sprintf.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/nxt_sprintf.h')
-rw-r--r--src/nxt_sprintf.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/nxt_sprintf.h b/src/nxt_sprintf.h
new file mode 100644
index 00000000..0a927f71
--- /dev/null
+++ b/src/nxt_sprintf.h
@@ -0,0 +1,21 @@
+
+/*
+ * Copyright (C) Igor Sysoev
+ * Copyright (C) NGINX, Inc.
+ */
+
+#ifndef _NXT_SPRINTF_H_INCLUDED_
+#define _NXT_SPRINTF_H_INCLUDED_
+
+
+/* STUB */
+#define NXT_DOUBLE_LEN (1 + DBL_MAX_10_EXP)
+
+
+NXT_EXPORT u_char *nxt_cdecl nxt_sprintf(u_char *buf, u_char *end,
+ const char *fmt, ...);
+NXT_EXPORT u_char *nxt_vsprintf(u_char *buf, u_char *end,
+ const char *fmt, va_list args);
+
+
+#endif /* _NXT_SPRINTF_H_INCLUDED_ */