delorie.com/djgpp/doc/libc/libc_60.html | search |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
#include <string.h> void bcopy(const void *source, void *dest, int length); |
Copy length bytes from source to dest. Overlapping regions are handled properly, although this behavior is not portable.
No value is returned.
ANSI/ISO C | No |
POSIX | No |
struct s a, b; bcopy(a, b, sizeof(struct s)); |
webmaster | delorie software privacy |
Copyright © 2004 | Updated Apr 2004 |