Details |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
1 |
cycrow |
1 |
#ifndef __SECURE_H__
|
|
|
2 |
#define __SECURE_H__
|
|
|
3 |
|
|
|
4 |
#define SPRINTBUFFER 100
|
|
|
5 |
|
|
|
6 |
#ifdef CY_USESECURE
|
|
|
7 |
#define SPRINTF(a,b) sprintf_s ( a, SPRINTBUFFER, b
|
|
|
8 |
#else
|
|
|
9 |
#define SPRINTF(a,b) sprintf ( a, b
|
|
|
10 |
#endif
|
|
|
11 |
|
|
|
12 |
#endif
|