-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsafe_string.h
62 lines (56 loc) · 1.8 KB
/
safe_string.h
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/******************************************************************************
*
* File: safe_string.h
* -----
*
* Copyright Statement:
* --------------------
* This software is protected by Copyright and the information contained
* herein is confidential.
* The software could not be copied and the information contained herein
* could not be used or disclosed except with the written permission of
* ...
*
* Project:
* --------
*
* Description:
* ------------
* The declaration of the Csafe_string class.
*
*
* Modification History:
* ---------------------
* Date Version Author Details
* ---- ------- ------ -------
* 1.1 ChenYao Original
*
******************************************************************************
*
*
*
*****************************************************************************/
#ifndef _SAFE_STRING_H_
#define _SAFE_STRING_H_
template <size_t size>
int _cdecl safe_sprintf(char (&buffer)[size],
const char *format, ...); // C++ only
template <size_t size>
int _cdecl safe_sprintf(wchar_t (&buffer)[size],
const wchar_t *format, ...); // C++ only
int _cdecl safe_sprintf(char *buffer, size_t size,
const char *format, ...);
int _cdecl safe_sprintf(wchar_t *buffer, size_t size,
const wchar_t *format, ...);
template <size_t size>
int _cdecl safe_overwrite(char (&buffer)[size],
const char *format, ...); // C++ only
template <size_t size>
int _cdecl safe_overwrite(wchar_t (&buffer)[size],
const wchar_t *format, ...); // C++ only
int _cdecl safe_overwrite(char *buffer, size_t size,
const char *format, ...);
int _cdecl safe_overwrite(wchar_t *buffer, size_t size,
const wchar_t *format, ...);
#include "safe_string.template.cpp"
#endif _SAFE_STRING_H_