|
TA-REF
|
Include dependency graph for trace2.c:Functions | |
| void | trace_vprintf (const char *func, int line, int level, bool level_ok, const char *fmt, va_list ap) |
| void | trace_printf (const char *func, int line, int level, bool level_ok, const char *fmt,...) |
| void trace_printf | ( | const char * | func, |
| int | line, | ||
| int | level, | ||
| bool | level_ok, | ||
| const char * | fmt, | ||
| ... | |||
| ) |
trace_printf() - Prints the formatted data to stdout.
This function returns the value of ap by calling va_end().
| func | Pointer to a buffer where the resulting C-string is stored. |
| line | integer type of line |
| level_ok | boolen value |
| fmt | C string that contains a format string |
| ap | A value identifying a variable arguments list |
| void trace_vprintf | ( | const char * | func, |
| int | line, | ||
| int | level, | ||
| bool | level_ok, | ||
| const char * | fmt, | ||
| va_list | ap | ||
| ) |
trace_vprintf() - Writes the formatted data from variable argument list to sized buffer.
This function returns the buffer character by calling ocall_print_string()
| func | Pointer to a buffer where the resulting C-string is stored. |
| line | integer type of line |
| level_ok | boolen value |
| fmt | C string that contains a format string |
| ap | A value identifying a variable arguments list |