码迷,mamicode.com
首页 > 其他好文 > 详细

sprintf_s的使用

时间:2016-11-26 16:50:08      阅读:337      评论:0      收藏:0      [点我收藏+]

标签:res   sprintf   span   编译器   snprintf   check   ext   nes   print   

int sprintf_s(char *restrict buffer, rsize_t bufsz,
              const char *restrict format, ...);

 

sprintf_s原先只有windows的编译器才只支持,但是在C11之后,也加入了该函数。

Linux中有类似的函数实现,但是不完全相同,snprintf:

int snprintfchar *restrict buffer, int bufsz, 
              const char *restrict format, ... );

 

As all bounds-checked functions, printf_sfprintf_ssprintf_s, and snrintf_s 

are only guaranteed to be available if __STDC_LIB_EXT1__ is defined by the implementation

and if the user defines __STDC_WANT_LIB_EXT1__ to the integer constant 1 before including <stdio.h>.

sprintf_s的使用

标签:res   sprintf   span   编译器   snprintf   check   ext   nes   print   

原文地址:http://www.cnblogs.com/dirt2/p/6104198.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!