Is there any reason to use the non-standard bzero()
and bcopy()
instead of memset()
and memcpy()
in a Linux environment? I've heard many say that they're better for Linux compilers, but haven't seen any advantages over the standard functions.
Are they more optimized than the standard ones, or do they have any behavioral particularity for which they're preferred?