improve function of strcat and strncat

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@483 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
gary.li.wenchao.4 2010-03-14 12:00:55 +00:00
parent d45d23a96a
commit e02d3fe86e
2 changed files with 26 additions and 30 deletions

View File

@ -60,38 +60,34 @@ int strncmp(const char * cs,const char * ct,rt_ubase_t count)
return __res; return __res;
} }
char* strcat(register char* s,register const char* t) char *strcat(char * dest, const char * src)
{ {
char *dest = s; char *tmp = dest;
s += strlen(s); while (*dest)
for (;;) dest++;
{ while ((*dest++ = *src++) != '\0')
if (!(*s = *t)) break; ;
++s;
++t; return tmp;
} }
return dest; char *strncat(char *dest, const char *src, size_t count)
{
char *tmp = dest;
if (count) {
while (*dest)
dest++;
while ((*dest++ = *src++)) {
if (--count == 0) {
*dest = '\0';
break;
}
}
} }
char *strncat(char *s, const char *t, size_t n) return tmp;
{
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;
}
*s=0;
fini:
return dest;
} }
char *strrchr(const char *t, int c) char *strrchr(const char *t, int c)

View File

@ -60,8 +60,8 @@ 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 *strcpy(char *dest, const char *src);
char *strncpy(char *dest, const char *src, size_t n); char *strncpy(char *dest, const char *src, size_t n);
char *strncat(char *s, const char *t, size_t n) ; char *strncat(char *dest, const char *src, size_t count);
char* strcat(register char* s,register const char* t); char *strcat(char * dest, const char * src);
char *strrchr(const char *t, int c); char *strrchr(const char *t, int c);
char *strdup(const char *s); char *strdup(const char *s);