summaryrefslogtreecommitdiff
path: root/ACE/ace/OS_NS_stdio.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/OS_NS_stdio.h')
-rw-r--r--ACE/ace/OS_NS_stdio.h18
1 files changed, 17 insertions, 1 deletions
diff --git a/ACE/ace/OS_NS_stdio.h b/ACE/ace/OS_NS_stdio.h
index b4699bbb634..c976f11063e 100644
--- a/ACE/ace/OS_NS_stdio.h
+++ b/ACE/ace/OS_NS_stdio.h
@@ -433,6 +433,14 @@ namespace ACE_OS {
int printf (const wchar_t *format, ...);
#endif
+ extern ACE_Export
+ int scanf (const char *format, ...);
+
+#if defined (ACE_HAS_WCHAR)
+ extern ACE_Export
+ int scanf (const wchar_t *format, ...);
+#endif
+
ACE_NAMESPACE_INLINE_FUNCTION
int puts (const char *s);
@@ -472,6 +480,14 @@ namespace ACE_OS {
int sprintf (wchar_t *buf, const wchar_t *format, ...);
# endif /* ACE_HAS_WCHAR */
+ extern ACE_Export
+ int sscanf (char *buf, const char *format, ...);
+
+# if defined (ACE_HAS_WCHAR)
+ extern ACE_Export
+ int sscanf (wchar_t *buf, const wchar_t *format, ...);
+# endif /* ACE_HAS_WCHAR */
+
ACE_NAMESPACE_INLINE_FUNCTION
char *tempnam (const char *dir = 0,
const char *pfx = 0);
@@ -516,7 +532,7 @@ namespace ACE_OS {
#if !defined (ACE_HAS_VASPRINTF)
extern ACE_Export
- int vasprintf_emulation (char **bufp, const char *format, va_list argptr);
+ int vasprintf_emulation (char **bufp, const char *format, va_list argptr);
#endif /* !ACE_HAS_VASPRINTF */
#if defined (ACE_HAS_WCHAR)