screenprintf

Prints output directly to the specified screen under format control.

Library:LibC
Classification:Novell
Service:Screen Support

Syntax

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

Parameters

scr

(IN) Specifies which screen receives the output.

format

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

...

(IN) Points to an argument for a conversion specifier. 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