| 774 | } |
| 775 | |
| 776 | int __cdecl vfprintf(FILE *f, const char *format, va_list args) |
| 777 | { |
| 778 | char buf[4096]; |
| 779 | int retval; |
| 780 | |
| 781 | if (!f || !format) |
| 782 | return 0; |
| 783 | |
| 784 | retval = vsprintf(buf, format, args); |
| 785 | |
| 786 | write((int) f, buf, strlen(buf)); |
| 787 | |
| 788 | return retval; |
| 789 | } |
| 790 | |
| 791 | int __cdecl fgetc(FILE *f) |
| 792 | { |
no test coverage detected