mirror of
https://github.com/reactos/reactos.git
synced 2025-06-20 07:36:05 +00:00
Create a branch for network fixes.
svn path=/branches/aicom-network-fixes/; revision=34994
This commit is contained in:
parent
0e213bbc00
commit
c501d8112c
18148 changed files with 0 additions and 860488 deletions
22
lib/sdk/crt/include/internal/printf.h
Normal file
22
lib/sdk/crt/include/internal/printf.h
Normal file
|
@ -0,0 +1,22 @@
|
|||
#ifndef _CRT_PRINTF_H
|
||||
#define _CRT_PRINTF_H
|
||||
|
||||
|
||||
/* Implementation of a printf appropriated from Linux kernel */
|
||||
|
||||
int lnx_sprintf(char *str, const char *fmt, ...);
|
||||
int lnx__vsprintf(char *str, const char *fmt, va_list ap);
|
||||
int lnx__vswprintf(wchar_t *str, const wchar_t *fmt, va_list ap);
|
||||
int lnx__vsnprintf(char *str, size_t maxlen, const char *fmt, va_list ap);
|
||||
int lnx__vsnwprintf(wchar_t *str, size_t maxlen, const char *fmt, va_list ap);
|
||||
int lnx_vfprintf(FILE* f, const char* fmt, va_list ap);
|
||||
int lnx_vfwprintf(FILE *f, const wchar_t *fmt, va_list ap);
|
||||
#ifdef _UNICODE
|
||||
#define lnx_vftprintf lnx_vfwprintf
|
||||
#define lnx__vstprintf lnx__vswprintf
|
||||
#else
|
||||
#define lnx_vftprintf lnx_vfprintf
|
||||
#define lnx__vstprintf lnx__vsprintf
|
||||
#endif
|
||||
|
||||
#endif /* _CRT_PRINTF_H */
|
Loading…
Add table
Add a link
Reference in a new issue