This category contains function for handling console in/out.
More...
This category contains function for handling console in/out.
◆ fplConsoleError()
Writes the given text to the standard error console buffer.
- Parameters
-
text | The text to write into standard error console. |
- Note
- This is most likely just a wrapper call to fprintf(stderr)
◆ fplConsoleFormatError()
fpl_common_api void fplConsoleFormatError |
( |
const char * |
format, |
|
|
|
... |
|
) |
| |
Writes the given formatted text to the standard error console buffer.
- Parameters
-
format | The format used for writing into the standard error console |
... | The dynamic arguments used for formatting the text |
- Note
- This is most likely just a wrapper call to vfprintf(stderr)
◆ fplConsoleFormatOut()
Writes the given formatted text to the standard output console buffer.
- Parameters
-
format | The format used for writing into the standard output console |
... | The dynamic arguments used for formatting the text |
- Note
- This is most likely just a wrapper call to vfprintf(stdout)
◆ fplConsoleOut()
Writes the given text to the standard output console buffer.
- Parameters
-
text | The text to write into standard output console. |
- Note
- This is most likely just a wrapper call to fprintf(stdout)
◆ fplConsoleWaitForCharInput()
Wait for a character to be typed in the console input and return it.
- Note
- This is most likely just a wrapper call to getchar()
- Returns
- Returns the character typed in in the console input