4. memccpy
原型:extern void *memccpy(void *dest, void *src, unsigned char ch, unsigned int count);
用法:#include <string.h>
功能:由src所指內存區域復制不多於count個字節到dest所指內存區域,如果遇到字符ch則停止復制。
說明:返回指向字符ch後的第一個字符的指針,如果src前n個字節中不存在ch則返回NULL。ch被復制。
5. memchr
原型:extern void *memchr(void *buf, char ch, unsigned count);
用法:#include <string.h>
功能:從buf所指內存區域的前count個字節查找字符ch。
說明:當第一次遇到字符ch時停止查找。如果成功,返回指向字符ch的指針;否則返回NULL。
6.memicmp
原型:extern int memicmp(void *buf1, void *buf2, unsigned int count);
用法:#include <string.h>
功能:比較內存區域buf1和buf2的前count個字節但不區分字母的大小寫。
說明:memicmp同memcmp的唯一區別是memicmp不區分大小寫字母。
當buf1<buf2時,返回值<0
當buf1=buf2時,返回值=0
當buf1>buf2時,返回值>0
7.memmove
原型:extern void *memmove(void *dest, const void *src, unsigned int count);
用法:#include <string.h>
功能:由src所指內存區域復制count個字節到dest所指內存區域。
說明:src和dest所指內存區域可以重疊,但復制後src內容會被更改。函數返回指向dest的指針。
8.memset
原型:extern void *memset(void *buffer, int c, int count);
用法:#include <string.h>
功能:把buffer所指內存區域的前count個字節設置成字符c。
說明:返回指向buffer的指針。
9. movmem
原型:extern void movmem(void *src, void *dest, unsigned int count);
用法:#include <string.h>
功能:由src所指內存區域復制count個字節到dest所指內存區域。
說明:src和dest所指內存區域可以重疊,但復制後src內容會被更改。函數返回指向dest的指針。
10.setmem
原型:extern void setmem(void *buf, unsigned int count, char ch);
用法:#include <string.h>
功能:把buf所指內存區域前count個字節設置成字符ch。
說明:返回指向buf的指針。
11.stpcpy
原型:extern char *stpcpy(char *dest,char *src);
用法:#include <string.h>
功能:把src所指由NULL結束的字符串復制到dest所指的數組中。
說明:src和dest所指內存區域不可以重疊且dest必須有足夠的空間來容納src的字符串。
返回指向dest結尾處字符(NULL)的指針。
12.原型:extern char *strcat(char *dest,char *src);
用法:#include <string.h>
功能:把src所指字符串添加到dest結尾處(覆蓋dest結尾處的'\0')並添加'\0'。
說明:src和dest所指內存區域不可以重疊且dest必須有足夠的空間來容納src的字符串。
返回指向dest的指針。
13.strchr
原型:extern char *strchr(char *s,char c);
用法:#include <string.h>
功能:查找字符串s中首次出現字符c的位置
說明:返回首次出現c的位置的指針,如果s中不存在c則返回NULL。
14.strcmp
原型:extern int strcmp(char *s1,char * s2);
用法:#include <string.h>
功能:比較字符串s1和s2。
說明:
當s1<s2時,返回值<0
當s1=s2時,返回值=0
當s1>s2時,返回值>0
15. strcmpi
原型:extern int stricmp(char *s1,char * s2);
用法:#include <string.h>
功能:比較字符串s1和s2,但不區分字母的大小寫。
說明:strcmpi是到stricmp的宏定義,實際未提供此函數。
當s1<s2時,返回值<0
當s1=s2時,返回值=0
當s1>s2時,返回值>0
16.strcpy
原型:extern char *strcpy(char *dest,char *src);
用法:#include <string.h>
功能:把src所指由NULL結束的字符串復制到dest所指的數組中。
說明:src和dest所指內存區域不可以重疊且dest必須有足夠的空間來容納src的字符串。
返回指向dest的指針。
17. strcspn
原型:extern int strcspn(char *s1,char *s2);
用法:#include <string.h>
功能:在字符串s1中搜尋s2中所出現的字符。
說明:返回第一個出現的字符在s1中的下標值,亦即在s1中出現而s2中沒有出現的子串的長度.
18.strdup
原型:extern char *strdup(char *s);
用法:#include <string.h>
功能:復制字符串s
說明:返回指向被復制的字符串的指針,所需空間由malloc()分配且可以由free()釋放。
19.stricmp
原型:extern int stricmp(char *s1,char * s2);
用法:#include <string.h>
功能:比較字符串s1和s2,但不區分字母的大小寫。
說明:strcmpi是到stricmp的宏定義,實際未提供此函數。
當s1<s2時,返回值<0
當s1=s2時,返回值=0
當s1>s2時,返回值>0
20.strlen
原型:extern int strlen(char *s);
用法:#include <string.h>
功能:計算字符串s的長度
說明:返回s的長度,不包括結束符NULL。
21.strlwr
原型:extern char *strlwr(char *s);
用法:#include <string.h>
功能:將字符串s轉換為小寫形式
說明:只轉換s中出現的大寫字母,不改變其它字符。返回指向s的指針。
22.strncat
原型:extern char *strncat(char *dest,char *src,int n);
用法:#include <string.h>
功能:把src所指字符串的前n個字符添加到dest結尾處(覆蓋dest結尾處的'\0')並添加'\0'。
說明:src和dest所指內存區域不可以重疊且dest必須有足夠的空間來容納src的字符串。
返回指向dest的指針。
23.strncmp
原型:extern int strcmp(char *s1,char * s2,int n);
用法:#include <string.h>
功能:比較字符串s1和s2的前n個字符。
說明:
當s1<s2時,返回值<0
當s1=s2時,返回值=0
當s1>s2時,返回值>0
24.strncmpi
原型:extern int strnicmp(char *s1,char * s2,int n);
用法:#include <string.h>
功能:比較字符串s1和s2的前n個字符但不區分大小寫。
說明:strncmpi是到strnicmp的宏定義
當s1<s2時,返回值<0
當s1=s2時,返回值=0
當s1>s2時,返回值>0
25.strncpy
原型:extern char *strncpy(char *dest,