summaryrefslogtreecommitdiff
path: root/ACE/ace/OS_NS_stdio.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2008-10-26 08:05:30 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2008-10-26 08:05:30 +0000
commit2a314a72a77e4d4e44f19c9e905b2dee280d87ae (patch)
treeb83bbc52cafbb527d9f344c471d7f58e949ba7be /ACE/ace/OS_NS_stdio.h
parent94d59b90dc346da95313d43ebbe62cdb7103a24a (diff)
downloadATCD-2a314a72a77e4d4e44f19c9e905b2dee280d87ae.tar.gz
Sun Oct 26 08:02:00 UTC 2008 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACE/ace/OS_NS_stdio.h')
-rw-r--r--ACE/ace/OS_NS_stdio.h24
1 files changed, 16 insertions, 8 deletions
diff --git a/ACE/ace/OS_NS_stdio.h b/ACE/ace/OS_NS_stdio.h
index 36f9685331f..6732169f082 100644
--- a/ACE/ace/OS_NS_stdio.h
+++ b/ACE/ace/OS_NS_stdio.h
@@ -326,6 +326,14 @@ namespace ACE_OS {
FILE *fopen (const wchar_t *filename, const char *mode);
#endif /* ACE_HAS_WCHAR */
+ extern ACE_Export
+ int fscanf (FILE* stream, const char *format, ...);
+
+#if defined (ACE_HAS_WCHAR)
+ extern ACE_Export
+ int fscanf (FILE* stream, const wchar_t *format, ...);
+#endif
+
#if defined (ACE_WIN32)
/// Default Win32 Security Attributes definition.
ACE_NAMESPACE_INLINE_FUNCTION
@@ -433,14 +441,6 @@ 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);
@@ -481,6 +481,14 @@ namespace ACE_OS {
# endif /* ACE_HAS_WCHAR */
extern ACE_Export
+ int scanf (const char *format, ...);
+
+#if defined (ACE_HAS_WCHAR)
+ extern ACE_Export
+ int scanf (const wchar_t *format, ...);
+#endif
+
+ extern ACE_Export
int sscanf (const char *buf, const char *format, ...);
# if defined (ACE_HAS_WCHAR)