BCMP

Section: Linux Programmer's Manual (3)
Updated: 2002-12-31
Index JM Home Page roff page
 

名前

bcmp - バイト列を比較する  

書式

#include <strings.h>

int bcmp(const void *s1, const void *s2, size_t n);
 

説明

bcmp() は、2 つのバイト列 s1s2 の先頭 n バイトを 比較する。2 つが等しいか、特に n が 0 の場合 bcmp() は 0 を返す。 さもなければ 0 以外を返す。  

返り値

バイト列が等しい場合は 0 、等しくない場合は 0 以外を返す。  

準拠

4.3BSD. この関数は廃止予定である (POSIX.1-2001 では 過去の名残 (LEGACY) とされている)。新しいプログラムでは memcmp(3) を使うべきである。  

関連項目

memcmp(3), strcasecmp(3), strcmp(3), strcoll(3), strncasecmp(3), strncmp(3)


 

Index

名前
書式
説明
返り値
準拠
関連項目

This document was created by man2html, using the manual pages.
Time: 04:31:32 GMT, November 19, 2007