strcpy.c 883 Bytes
/*
=============================================================================
        Copyright (C) 1997-1999 NINTENDO Co.,Ltd.
        
        $RCSfile: strcpy.c,v $
        $Revision: 1.1.1.1 $
        $Date: 2002/10/30 02:07:09 $
=============================================================================
関数名:strcpy
-----------------------------------------------------------------------------
書式:  #include <string.h>
        char *strcpy(char *str1, const char *str2);
引数:  str1 コピー先の文字列バッファ
        str2 コピー元の文字列バッファ
戻り値:str1 のポインタ
説明:  文字列 str2 を 文字列 str1 にコピーする。
-----------------------------------------------------------------------------
*/
#include    "string.h"

char *strcpy(char *str1, const char *str2)
{
    char *p;
    p = str1;
    while(*str2) *p++ = *str2++;
    *p = '\0';
    return  str1;
}