使用visual studio express,将c代码移植到
windows 32位
现在我有3个功能,我无法在 Windows中找到任何替代品
他们是:
报警
bzero
BCOPY
C win32中的等效方法是什么?
现在我有3个功能,我无法在 Windows中找到任何替代品
他们是:
报警
bzero
BCOPY
C win32中的等效方法是什么?
从哪个平台移植到Windows?无论如何,bzero和bcopy已经折腾了一段时间.
原文链接:https://www.f2er.com/windows/363720.html对于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().
所以只需修复你的代码并使用建议的替换.