| www.delorie.com/djgpp/doc/libc-2.01/libc_128.html | search |
#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.
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.
| prev next webmaster | delorie software privacy |
| Copyright © 1997 | Updated Apr 1997 |