summaryrefslogtreecommitdiffstats
path: root/private/crt32/stdio/fputc.c
diff options
context:
space:
mode:
authorAdam <you@example.com>2020-05-17 05:51:50 +0200
committerAdam <you@example.com>2020-05-17 05:51:50 +0200
commite611b132f9b8abe35b362e5870b74bce94a1e58e (patch)
treea5781d2ec0e085eeca33cf350cf878f2efea6fe5 /private/crt32/stdio/fputc.c
downloadNT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.gz
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.bz2
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.lz
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.xz
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.zst
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.zip
Diffstat (limited to 'private/crt32/stdio/fputc.c')
-rw-r--r--private/crt32/stdio/fputc.c89
1 files changed, 89 insertions, 0 deletions
diff --git a/private/crt32/stdio/fputc.c b/private/crt32/stdio/fputc.c
new file mode 100644
index 000000000..acb204f2d
--- /dev/null
+++ b/private/crt32/stdio/fputc.c
@@ -0,0 +1,89 @@
+/***
+*fputc.c - write a character to an output stream
+*
+* Copyright (c) 1985-1993, Microsoft Corporation. All rights reserved.
+*
+*Purpose:
+* defines fputc() - writes a character to a stream
+* defines fputwc() - writes a wide character to a stream
+*
+*Revision History:
+* 09-01-83 RN initial version
+* 11-09-87 JCR Multi-thread support
+* 12-11-87 JCR Added "_LOAD_DS" to declaration
+* 05-27-88 PHG Merged DLL and normal versions
+* 06-14-88 JCR Near reference to _iob[] entries; improve REG variables
+* 08-25-88 GJF Don't use FP_OFF() macro for the 386
+* 06-21-89 PHG Added putc() function
+* 08-28-89 JCR Removed _NEAR_ for 386
+* 02-15-90 GJF Fixed copyright and indents.
+* 03-19-90 GJF Replaced _LOAD_DS with _CALLTYPE1, added #include
+* <cruntime.h> and removed #include <register.h>. Also,
+* removed some leftover 16-bit support.
+* 07-24-90 SBM Replaced <assertm.h> by <assert.h>
+* 10-02-90 GJF New-style function declarators.
+* 04-26-93 CFW Wide char enable.
+* 04-30-93 CFW Remove wide char support to fputwc.c.
+*
+*******************************************************************************/
+
+#include <cruntime.h>
+#include <stdio.h>
+#include <assert.h>
+#include <file2.h>
+#include <internal.h>
+#include <os2dll.h>
+
+/***
+*int fputc(ch, stream) - write a character to a stream
+*
+*Purpose:
+* Writes a character to a stream. Function version of putc().
+*
+*Entry:
+* int ch - character to write
+* FILE *stream - stream to write to
+*
+*Exit:
+* returns the character if successful
+* returns EOF if fails
+*
+*Exceptions:
+*
+*******************************************************************************/
+
+int _CRTAPI1 fputc (
+ int ch,
+ FILE *str
+ )
+{
+ REG1 FILE *stream;
+ REG2 int retval;
+#ifdef MTHREAD
+ int index;
+#endif
+
+ assert(str != NULL);
+
+ /* Init stream pointer */
+ stream = str;
+
+#ifdef MTHREAD
+ index = _iob_index(stream);
+#endif
+ _lock_str(index);
+ retval = _putc_lk(ch,stream);
+ _unlock_str(index);
+
+ return(retval);
+}
+
+#undef putc
+
+int _CRTAPI1 putc (
+ int ch,
+ FILE *str
+ )
+{
+ return fputc(ch, str);
+}