Changeset 0580615 in buchla-68k for iolib/sprintf.c
- Timestamp:
- 07/08/2017 02:42:31 PM (7 years ago)
- Branches:
- master
- Children:
- 342a56f
- Parents:
- 46d8069
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
iolib/sprintf.c
r46d8069 r0580615 8 8 #include "stdarg.h" 9 9 10 extern long dofmt_();10 extern long dofmt_(int (*putsub)(), char *format, va_list args); 11 11 12 12 static char *buff; 13 static int spsub();13 static int spsub(char c); 14 14 15 15 /* … … 38 38 */ 39 39 40 static 41 int 42 spsub(c) 43 char c; 40 static int spsub(char c) 44 41 { 45 42 return((*buff++ = c) & 0xFF);
Note:
See TracChangeset
for help on using the changeset viewer.