summaryrefslogtreecommitdiff
path: root/src/pal/src/safecrt/safecrt_output_s.cpp
blob: c3e7f91404f7119da42df6ad2036ec57b21912ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

/***
*safecrt_output_s.c - implementation of the _output family for safercrt.lib
*

*
*Purpose:
*       This file contains the implementation of the _output family for safercrt.lib.
*
*Revision History:
*       07-08-04   SJ   Stub module created.
*       07-13-04   AC   Added support for floating-point types.
*       07-29-04   AC   Added macros for a safecrt version of mctowc and wctomb, which target ntdll.dll or msvcrt.dll
*                       based on the _NTSUBSET_ #define
*       09-24-04  MSL   Prefix disallow NULL deref
*
****/

#define _SAFECRT_IMPL

#define __STDC_LIMIT_MACROS
#include "pal/palinternal.h"
#include <string.h>
#include <errno.h>
#include <limits.h>
#include <stdlib.h>
#include <stdarg.h>
#include <inttypes.h>
#include "internal_securecrt.h"

#include "mbusafecrt_internal.h"

#define FORMAT_VALIDATIONS
#define _CFLTCVT _safecrt_cfltcvt

#define _TCHAR CRT_TCHAR
#define TCHAR CRTTCHAR

typedef char        _TCHAR;
typedef char        TCHAR;
#define _T(x)       x

#include "output.inl"