COBOL
首页
新随笔
新文章
联系
管理
posts - 12, comments - 0, trackbacks - 0
Strcpy()函数 Strcat()函数 (从VC库文件中提取)
/**/
/*
***strcat.c - contains strcat() and strcpy()
*
* Copyright (c) 1985-1997, Microsoft Corporation. All rights reserved.
*
*Purpose:
* Strcpy() copies one string onto another.
*
* Strcat() concatenates (appends) a copy of the source string to the
* end of the destination string, returning the destination string.
*
******************************************************************************
*/
#include
<
cruntime.h
>
#include
<
string
.h
>
#ifndef _MBSCAT
#ifdef _MSC_VER
#pragma function(strcat,strcpy)
#endif
/* _MSC_VER */
#endif
/* _MBSCAT */
/**/
/*
***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 to be appended
* const char *src - string to be appended to the end of "dst"
*
*Exit:
* The address of "dst"
*
*Exceptions:
*
******************************************************************************
*/
char
*
__cdecl strcat (
char
*
dst,
const
char
*
src
)
{
char
*
cp
=
dst;
while
(
*
cp )
cp
++
;
/**/
/*
find end of dst
*/
while
(
*
cp
++
=
*
src
++
) ;
/**/
/*
Copy src to end of dst
*/
return
( dst );
/**/
/*
return dst
*/
}
/**/
/*
***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 be copied
* const char * src - string to be copied over "dst"
*
*Exit:
* The address of "dst"
*
*Exceptions:
******************************************************************************
*/
char
*
__cdecl strcpy(
char
*
dst,
const
char
*
src)
{
char
*
cp
=
dst;
while
(
*
cp
++
=
*
src
++
);
/**/
/*
Copy src over dst
*/
return
( dst );
}
posted on 2008-11-21 12:34
Benson
阅读(1740)
评论(0)
编辑
收藏
引用
所属分类:
C/C++
只有注册用户
登录
后才能发表评论。
【推荐】100%开源!大型工业跨平台软件C++源码提供,建模,组态!
相关文章:
const int *p,const * int p,int const *p
strlen()函数 (从VC库文件中提取)
Strcpy()函数 Strcat()函数 (从VC库文件中提取)
Strcmp函数 (从VC库文件中提取)
网站导航:
博客园
IT新闻
BlogJava
知识库
博问
管理
<
2008年11月
>
日
一
二
三
四
五
六
26
27
28
29
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
1
2
3
4
5
6
常用链接
我的随笔
我的评论
我参与的随笔
留言簿
(1)
给我留言
查看公开留言
查看私人留言
随笔分类
C/C++(4)
WINDOWS编程(4)
数据库技术(2)
信息科学(1)
随笔档案
2009年3月 (1)
2008年12月 (1)
2008年11月 (10)
搜索
最新评论
阅读排行榜
1. Strcpy()函数 Strcat()函数 (从VC库文件中提取) (1740)
2. Select 语句的用法(1048)
3. Strcmp函数 (从VC库文件中提取)(1018)
4. 回调函数 Callback Function(657)
5. strlen()函数 (从VC库文件中提取) (623)
评论排行榜
1. 句柄(0)
2. 句柄和指针有何区别? (0)
3. 数据库设计三大范式应用实例剖析(0)
4. Strcmp函数 (从VC库文件中提取)(0)
5. Strcpy()函数 Strcat()函数 (从VC库文件中提取) (0)