STRING.3
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:3k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. STRING(3)                 Minix Programmer's Manual                  STRING(3)
  2. NAME
  3.      string, strcat, strncat, strcmp, strncmp, strcpy, strncpy, strlen, index,
  4.      rindex  -  string  operations  string,  strcat, strncat, strcmp, strncmp,
  5.      strcpy, strncpy,  strlen,  strchr,  strrchr,  strerror,  memcmp,  memcpy,
  6.      memmove, memchr, memset, index, rindex - string operations
  7. SYNOPSIS
  8.      #include <sys/types.h>
  9.      #include <strings.h>
  10.      char *strcat(char *s1, const char *s2)
  11.      char *strncat(char *s1, const char *s2, size_t n)
  12.      int strcmp(const char *s1, const char *s2)
  13.      int strncmp(const char *s1, const char *s2, size_t n)
  14.      char *strcpy(char *s1, const char *s2)
  15.      char *strncpy(char *s1, const char *s2, size_t n)
  16.      size_t strlen(const char *s)
  17.      char *strchr(const char *s, int c)
  18.      char *strrchr(const char *s, int c)
  19.      char *strerror(int errnum)
  20.      int memcmp(const void *s1, const void *s2, size_t n)
  21.      void *memcpy(void *s1, const void *s2, size_t n)
  22.      void *memmove(void *s1, const void *s2, size_t n)
  23.      void *memchr(const void *s, int c, size_t n)
  24.      void *memset(void *s, int c, size_t n)
  25.      char *index(const char *s, int c)
  26.      char *rindex(const char *s, int c)
  27. DESCRIPTION
  28.      These functions operate on null-terminated strings.  They  do  not  check
  29.      for overflow of any receiving string.
  30.      Strcat appends a copy of string s2 to the  end  of  string  s1.   Strncat
  31.      copies  at  most  n  characters.   Both  return  a  pointer  to the null-
  32.      terminated result.
  33.      Strcmp compares its arguments and returns an integer greater than,  equal
  34.      to,  or  less  than 0, according as s1 is lexicographically greater than,
  35.      equal to, or less than s2.  Strncmp makes the same comparison  but  looks
  36.      at at most n characters.
  37.      Strcpy copies string s2 to s1, stopping after the null character has been
  38.      moved.   Strncpy  copies exactly n characters, truncating or null-padding
  39.      s2; the target may not be null-terminated if the length of  s2  is  n  or
  40.      more.  Both return s1.
  41.      Strlen returns the number of non-null characters in s.
  42. 4BSD                              May 15, 1985                               1
  43. STRING(3)                 Minix Programmer's Manual                  STRING(3)
  44.      Strchr (strrchr) returns a pointer to  the  first  (last)  occurrence  of
  45.      character c in string s, or null if c does not occur in the string.
  46.      Strerror returns the error string for the system call error errnum.   See
  47.      intro(2).
  48.      Memcmp is like strcmp except that the strings are memory blocks of length
  49.      n.  Null characters are treated as ordinary characters.
  50.      Memcpy copies n bytes from the location pointed to by s2 to s1.   Memmove
  51.      is  like  memcpy,  except  that  it  can  handle  overlap between the two
  52.      strings.  Both functions return s1.
  53.      Memchr returns a pointer to the first occurrence of character c in string
  54.      s, or null if c does not occur in the string.
  55.      Memset sets n bytes to c starting at location s.  It returns s.
  56.      Index and rindex are obsolete versions of strchr and strrchr.   New  code
  57.      should avoid using them.
  58. NOTES
  59.      Characters are compared as unsigned char, whether char itself  is  signed
  60.      or not.
  61. 4BSD                              May 15, 1985                               2