#include <stdio.h> int _doprnt(const char *format, void *params, FILE *file);
This is an internal function that is used by all the printf
style
functions, which simply pass their format, arguments, and stream to this
function.
See section printf for a discussion of the allowed formats and arguments.
The number of characters generated is returned.
not ANSI, not POSIX
int args[] = { 1, 2, 3, 66 }; _doprnt("%d %d %d %c\n", args, stdout);
Go to the first, previous, next, last section, table of contents.