什么是win32报警,bzero,bcopy在移植c代码时的替代方法

前端之家收集整理的这篇文章主要介绍了什么是win32报警,bzero,bcopy在移植c代码时的替代方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用visual studio express,将c代码移植到 windows 32位
现在我有3个功能,我无法在 Windows中找到任何替代品
他们是:
报警
bzero
BCOPY
C win32中的等效方法是什么?
从哪个平台移植到Windows?无论如何,bzero和bcopy已经折腾了一段时间.

对于bzero:

This function is deprecated (marked as LEGACY in
POSIX.1-2001): use memset(3) in new
programs. POSIX.1-2008 removes the
specifica-
tion of bzero().

为bcopy:

This function is deprecated (marked as LEGACY in
POSIX.1-2001): use memcpy(3) or
memmove(3) in new programs. Note that
the first
two arguments are interchanged for memcpy(3) and memmove(3).
POSIX.1-2008 removes the specification
of bcopy().

所以只需修复你的代码并使用建议的替换.

原文链接:https://www.f2er.com/windows/363720.html

猜你在找的Windows相关文章