| Last change
 on this file since ab83141 was             ab83141, checked in by Thomas Lopatic <thomas@…>, 8 years ago | 
        
          | 
_dofmt() -> dofmt_().
 | 
        
          | 
              
Property                 mode
 set to                 100644 | 
        
          | File size:
            638 bytes | 
      
      
| Line |  | 
|---|
| 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 "stdarg.h" | 
|---|
| 11 |  | 
|---|
| 12 | static FILE *Stream; | 
|---|
| 13 |  | 
|---|
| 14 | extern  int     dofmt_(); | 
|---|
| 15 | extern  int     aputc(); | 
|---|
| 16 |  | 
|---|
| 17 | static  int     fpsub(); | 
|---|
| 18 |  | 
|---|
| 19 | int fprintf(FILE *stream, char *fmt, ...) | 
|---|
| 20 | { | 
|---|
| 21 | register int count; | 
|---|
| 22 | va_list aptr; | 
|---|
| 23 |  | 
|---|
| 24 | Stream = stream; | 
|---|
| 25 | va_start(aptr, fmt); | 
|---|
| 26 | count = dofmt_(fpsub, fmt, aptr); | 
|---|
| 27 | va_end(aptr); | 
|---|
| 28 | return(count); | 
|---|
| 29 | } | 
|---|
| 30 |  | 
|---|
| 31 | static | 
|---|
| 32 | int | 
|---|
| 33 | fpsub(c) | 
|---|
| 34 | int c; | 
|---|
| 35 | { | 
|---|
| 36 | return(aputc(c, Stream)); | 
|---|
| 37 | } | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.