ISInterface:Printf

From Lavish Software Wiki
Revision as of 21:33, 2 September 2005 by Beefalo (talk | contribs)
(diff) ←Older revision | view current revision (diff) | Newer revision→ (diff)
Jump to navigation Jump to search

Syntax

  • void Printf(const char *Format, ...)

Purpose

Uses standard printf formatting to display text in the Inner Space session console. This function is referenced by the printf define macro in ISXDK.

Usage

Parameters

  • const char *Format
printf formatting text, such as "ISXDK Version %X"
  • ...
Values to be used

Return Value

none

Examples

int age;
char name[50];
age=30;
name="Fred Lincoln";
printf("Name: %s Age: %d",name,age);

See Also