BSTRING.3
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:1k
源码类别:

操作系统开发

开发平台:

C/C++

  1. BSTRING(3)                Minix Programmer's Manual                 BSTRING(3)
  2. NAME
  3.      bstring, bcopy, bcmp, bzero, ffs - bit and byte string operations
  4. SYNOPSIS
  5.      #include <sys/types.h>
  6.      #include <string.h>
  7.      #include <unistd.h>
  8.      void bcopy(const void *src, void *dst, size_t length)
  9.      int bcmp(const void *b1, const void *b2, size_t length)
  10.      void bzero(void *dst, size_t length)
  11.      int ffs(int i)
  12. DESCRIPTION
  13.      The functions bcopy, bcmp, and bzero operate on variable  length  strings
  14.      of  bytes.  They do not check for null bytes as the routines in string(3)
  15.      do.
  16.      Bcopy copies length bytes from string src to the string dst.
  17.      Bcmp compares byte string b1 against byte string b2,  returning  zero  if
  18.      they  are  identical, non-zero otherwise.  Both strings are assumed to be
  19.      length bytes long.
  20.      Bzero places length 0 bytes in the string b1.
  21.      Ffs find the first bit set in the argument  passed  it  and  returns  the
  22.      index of that bit.  Bits are numbered starting at 1.  A return value of 0
  23.      indicates the value passed is zero.
  24. BUGS
  25.      The bcopy, bcmp, and bzero functions are obsolete; new  code  should  use
  26.      memmove, memcmp, and memset respectively.
  27.      The bcopy routine takes parameters backwards from  memcpy,  memmove,  and
  28.      strcpy.
  29. 5BSD                              May 15, 1985                               1