BOOTSTRAP (kutils) functions
LIBRARY ROUTINE
kprintf - print formatted output to kstdout
LIBRARY CALL
int kprintf(
const char *format,
kvalist)
INPUT
- format - the format in which to print the values
- kvalist - variable number of values to format and write
to kstdout. The format string determines the data
type of the value(s) to be provided.
OUTPUT
none
RETURN VALUE
The number of characters written to stdout
DESCRIPTION
This function is a replacement for the system "printf"
call; however, kprintf() uses data transport mechanisms
to print the text, in order to support distributed computing.
The kprintf() function converts, formats, and writes
its value parameters as specified by the format parameter
to kstdout. If there are insufficient values for the format,
the behavior is undefined; if the format is exhausted while
values remain, the excess values are ignored.
ADDITIONAL INFORMATION
none
EXAMPLES
none
SIDE EFFECTS
none
RESTRICTIONS
none
MODIFICATION
none
FILES
$BOOTSTRAP/objects/library/kutils/src/kstdio.c
SEE ALSO
kutils(3)
COPYRIGHT
Copyright (C) 1993 - 1997, Khoral Research, Inc. ("KRI") All rights reserved.