07 2011 档案

strcmp源码
摘要:/****strcmp - compare two strings, returning less than, equal to, or greater than**Purpose:* STRCMP compares two strings and returns an integer* to indicate whether the first is less than the second, ... 阅读全文

posted @ 2011-07-22 19:18 jay.windows 阅读(3665) 评论(0) 推荐(0)

strcat源码
摘要:/****char *strcat(dst, src) - concatenate (append) one string to another**Purpose:* Concatenates src onto the end of dest. Assumes enough* space in dest.**Entry:* char *dst - string to which "src" is... 阅读全文

posted @ 2011-07-22 19:07 jay.windows 阅读(1754) 评论(0) 推荐(0)

strcpy源码
摘要:/****char *strcpy(dst, src) - copy one string over another**Purpose:* Copies the string src into the spot specified by* dest; assumes enough room.**Entry:* char * dst - string over which "src" is to ... 阅读全文

posted @ 2011-07-22 19:04 jay.windows 阅读(5723) 评论(0) 推荐(0)

导航