vscreenprintf

Prints output directly to the specified screen under format control.

Library:LibC
Classification:Novell
Service:Screen Support

Syntax

  #include <screen.h> 
   
  int vscreenprintf (
     scr_t,        scr
     const char   *format,
     va_list       args);
  

Parameters

scr

(IN) Specifies which screen receives the output.

format

(IN) Points to the format specification string. See Print Format Control Strings.

args

(IN) Specifies a variable argument list. The number of arguments is determined by the format string.

Return Values

Returns the number of characters written.

Remarks

The value for the scr parameter can be obtained from many sources. The following are some of the common ones:

See Also