Provided by: manpages-ja-dev_0.5.0.0.20070415-1_all bug
     前
        bcmp - バイト列を比較する
 
     式
        #include <strings.h>
 
        int bcmp(const void *s1, const void *s2, size_t n);
 
     明
        bcmp()  は、2  つのバイト列  s1  と  s2  の先頭  n バイトを 比較する。2
        つが等しいか、特に n が 0 の場合 bcmp() は 0  を返す。  さもなければ  0
        以外を返す。
 
         値
        バイト列が等しい場合は 0 、等しくない場合は 0 以外を返す。
 
     拠
        4.3BSD.    この関数は廃止予定である   (POSIX.1-2001   では   過去の名残
        (LEGACY) とされている)。新しいプログラムでは memcmp() を使うべい任△襦
 
             
        memcmp(3),   strcasecmp(3),   strcmp(3),   strcoll(3),  strncasecmp(3),
        strncmp(3)