im porting c code to windows 32 bit using visual studio express
now i have 3 functions that i can’t find any alternatives in windows
they are:
alarm
bzero
bcopy
what are the equivalent methods in C win32 ?
im porting c code to windows 32 bit using visual studio express now i
Share
From which platform are you porting to windows? Anyhow
bzeroandbcopyare depreciated since quite a while.for bzero:
for bcopy:
So just fix your code and use the proposed replacements.