Last change
on this file since cbe2c15 was df097bf, checked in by Thomas Lopatic <thomas@…>, 7 years ago |
Code compiles, doesn't link.
|
-
Property mode
set to
100644
|
File size:
652 bytes
|
Rev | Line | |
---|
[f40a309] | 1 | /*
|
---|
| 2 | =============================================================================
|
---|
| 3 | fprintf.c -- fprintf function
|
---|
| 4 | Version 2 -- 1987-06-26 -- D.N. Lynx Crowe
|
---|
| 5 | =============================================================================
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 | #include "stdio.h"
|
---|
| 9 | #include "stddefs.h"
|
---|
| 10 | #include "varargs.h"
|
---|
| 11 |
|
---|
| 12 | static FILE *Stream;
|
---|
| 13 |
|
---|
| 14 | extern int _dofmt();
|
---|
| 15 | extern int aputc();
|
---|
| 16 |
|
---|
[df097bf] | 17 | static int fpsub();
|
---|
| 18 |
|
---|
[f40a309] | 19 | int
|
---|
| 20 | fprintf(stream, fmt, va_alist)
|
---|
| 21 | FILE *stream;
|
---|
| 22 | char *fmt;
|
---|
| 23 | va_dcl
|
---|
| 24 | {
|
---|
| 25 | register int count;
|
---|
| 26 | va_list aptr;
|
---|
| 27 |
|
---|
| 28 | Stream = stream;
|
---|
| 29 | va_start(aptr);
|
---|
| 30 | count = _dofmt(fpsub, fmt, aptr);
|
---|
| 31 | va_end(aptr);
|
---|
| 32 | return(count);
|
---|
| 33 | }
|
---|
| 34 |
|
---|
| 35 | static
|
---|
| 36 | int
|
---|
| 37 | fpsub(c)
|
---|
| 38 | {
|
---|
| 39 | return(aputc(c, Stream));
|
---|
| 40 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.