diff options
author | Alex Auvolat <alex@adnab.me> | 2016-07-16 23:39:51 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2016-07-16 23:39:51 +0200 |
commit | 6466208ec051e58b824cc3c839b6b086ae910fe6 (patch) | |
tree | 434741997865ec6f0c4c3badb4fcfde557a7af35 /src/common/include/kogata/printf.h | |
parent | bb2dd23f315bafa7b0b64845c2fe25d7a0893b10 (diff) | |
download | kogata-6466208ec051e58b824cc3c839b6b086ae910fe6.tar.gz kogata-6466208ec051e58b824cc3c839b6b086ae910fe6.zip |
Progress on stdio impementation
Diffstat (limited to 'src/common/include/kogata/printf.h')
-rw-r--r-- | src/common/include/kogata/printf.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/include/kogata/printf.h b/src/common/include/kogata/printf.h index b4e1c1b..121af78 100644 --- a/src/common/include/kogata/printf.h +++ b/src/common/include/kogata/printf.h @@ -7,4 +7,6 @@ int snprintf(char* s, size_t n, const char* format, ...); int vsnprintf(char* s, size_t n, const char* format, va_list arg); +int vcprintf(int (*putc_fun)(int c, void* p), void* p, const char* format, va_list arg); + /* vim: set ts=4 sw=4 tw=0 noet :*/ |