提交 e02d3fe8 编写于 作者: G gary.li.wenchao.4

improve function of strcat and strncat

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@483 bbd45198-f89e-11dd-88c7-29a3b14d5316
上级 d45d23a9
......@@ -60,38 +60,34 @@ int strncmp(const char * cs,const char * ct,rt_ubase_t count)
return __res;
}
char* strcat(register char* s,register const char* t)
char *strcat(char * dest, const char * src)
{
char *dest = s;
s += strlen(s);
for (;;)
{
if (!(*s = *t)) break;
++s;
++t;
}
return dest;
char *tmp = dest;
while (*dest)
dest++;
while ((*dest++ = *src++) != '\0')
;
return tmp;
}
char *strncat(char *s, const char *t, size_t n)
char *strncat(char *dest, const char *src, size_t count)
{
char *dest = s;
register char *max;
s += rt_strlen(s);
if ((max=s+n)==s)
goto fini;
for (;;)
{
if (!(*s = *t)) break;
if (++s==max) break;
++t;
char *tmp = dest;
if (count) {
while (*dest)
dest++;
while ((*dest++ = *src++)) {
if (--count == 0) {
*dest = '\0';
break;
}
}
}
*s=0;
fini:
return dest;
return tmp;
}
char *strrchr(const char *t, int c)
......
......@@ -57,11 +57,11 @@ int strcasecmp(const char *a, const char *b);
int strncasecmp(const char *cs, const char *ct, size_t count);
int sscanf(const char * buf, const char * fmt, ...);
size_t strlen(const char *s);
char * strstr(const char * s1,const char * s2);
char *strstr(const char * s1,const char * s2);
char *strcpy(char *dest, const char *src);
char *strncpy(char *dest, const char *src, size_t n);
char *strncat(char *s, const char *t, size_t n) ;
char* strcat(register char* s,register const char* t);
char *strncat(char *dest, const char *src, size_t count);
char *strcat(char * dest, const char * src);
char *strrchr(const char *t, int c);
char *strdup(const char *s);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册