|
TA-REF
|
#include <stddef.h>#include <stdarg.h>#include "tools.h"#include <stdio.h>#include "ocall_wrapper.h"
Include dependency graph for tools.c:Functions | |
| static unsigned int | _strlen (const char *str) |
| int | puts (const char *s) |
| int | putchar (int c) |
| int | printf (const char *fmt,...) |
|
inlinestatic |
| int printf | ( | const char * | fmt, |
| ... | |||
| ) |
printf() - Function sends formatted output to stdout.
format can optionally contain embedded format tags that are replaced by the values specified in subsequent additional arguments and formatted as requested.
| fm | This is the string that contains the text to be written to stdout. |
| int putchar | ( | int | c | ) |
putchar() - Function writes a character (an unsigned char) specified by the argument char to stdout.
This function returns the character written as an unsigned char cast to an int or EOF on error.
| c | This is the character to be written. This is passed as its int promotion. |
| int puts | ( | const char * | s | ) |