ReactOS 0.4.16-dev-942-g91fadeb
printf.c
Go to the documentation of this file.
1/*
2 * PROJECT: ReactOS CRT
3 * LICENSE: MIT (https://spdx.org/licenses/MIT)
4 * PURPOSE: Instantiation of CRT stdio inline functions
5 * COPYRIGHT: Copyright 2023-2024 Timo Kreuzer <timo.kreuzer@reactos.org>
6 */
7
8#define _NO_CRT_STDIO_INLINE
9#include <stdio.h>
10
11// These 2 functions are inlined in UCRT headers, but they are referenced by
12// external code in the legacy CRT, so we need to provide them as non-inline
13// functions here.
14
15_Success_(return >= 0)
20 ...)
21{
22 int _Result;
24
26
29 _Buffer, (size_t)-1, _Format, NULL, _ArgList);
30
32 return _Result < 0 ? -1 : _Result;
33}
34
35_Success_(return >= 0)
39 _In_ size_t const _BufferCount,
42 )
43{
47
48 return _Result < 0 ? -1 : _Result;
49}
char * va_list
Definition: acmsvcex.h:78
#define _CRT_INTERNAL_PRINTF_LEGACY_VSPRINTF_NULL_TERMINATION
#define _CRT_INTERNAL_LOCAL_PRINTF_OPTIONS
#define NULL
Definition: types.h:112
__crt_va_start(_ArgList, _Format)
_In_z_ _Printf_format_string_ char const *const _Format
Definition: printf.c:19
_Result
Definition: printf.c:27
__crt_va_end(_ArgList)
_In_z_ _Printf_format_string_ char const *const va_list _ArgList
Definition: printf.c:23
_In_ _Pre_notnull_ _Buffer
Definition: stdlib.h:644
#define sprintf(buf, format,...)
Definition: sprintf.c:55
#define _Post_maybez_
Definition: ms_sal.h:1372
#define _Always_(a)
Definition: no_sal2.h:90
#define _Success_(c)
Definition: no_sal2.h:84
#define _Out_writes_opt_(s)
Definition: no_sal2.h:226
#define _In_z_
Definition: no_sal2.h:164
#define _Post_z_
Definition: no_sal2.h:508
#define _Pre_notnull_
Definition: no_sal2.h:516
#define _In_
Definition: no_sal2.h:158
#define _Printf_format_string_
Definition: no_sal2.h:356
int __cdecl __stdio_common_vsprintf(unsigned __int64 const options, char *const buffer, size_t const buffer_count, char const *const format, _locale_t const locale, va_list const arglist)
Definition: output.cpp:233
_UCRT_DISABLE_CLANG_WARNINGS _CRT_BEGIN_C_HEADER _Check_return_wat_ _In_ size_t _BufferCount
Definition: conio.h:25
#define _Check_return_opt_
Definition: corecrt.h:224
#define _vsnprintf
Definition: xmlstorage.h:202
#define __CRTDECL
Definition: yvals.h:17
#define const
Definition: zconf.h:233