INtime SDK Help
bstring (bcmp, bcopy, bzero) (legacy networking)
INtime Help

bcmp(), bcopy(), and bzero() execute binary string operations. They operate on variable length strings of bytes but do not check for null bytes as the routines in string do.

Note:   bcopy() takes its two char* parameters in the reverse order from strcpy() and memcpy().
int bcmp(
    char* b1,
    char* b2,
    int length
);

int bcopy(
    char* b1,
    char* b2,
    unsigned int length
);

void bzero(
    char* b,
    int length
);

Requirements

Versions Defined in Include Link to
INtime 3.0 strings.h sys/types.h
strings.h
netiff3m.lib
See Also