Document of c-modernization-kit (override-sample) 1.0.0
Loading...
Searching...
No Matches
console_output.c
Go to the documentation of this file.
1
15
16#include <libbase.h>
17#include <stdarg.h>
18#include <stdio.h>
19
20/* doxygen コメントは、ヘッダに記載 */
21void BASE_API console_output(const char *format, ...)
22{
23 va_list args;
24 va_start(args, format);
25 vprintf(format, args);
26 va_end(args);
27}
void BASE_API console_output(const char *format,...)
printf と同じ書式でコンソールに出力します。
ベースライブラリ (動的リンク用) のヘッダーファイル。
#define BASE_API
呼び出し規約マクロ。
Definition libbase.h:46