在函数 main() {...}
1)#include头文件string.h
2)我对自己的文件进行原型制作,称之为strcpy:
**char *strcpy(char *strSource , const char *dest);**
3) 我还希望在 main() 的 string.h 中使用“真正的” strlen函数。
4)在另一个编译文件中,我有我的 strcpy 版本。
问题:如何让链接器选择我的 strcpy 版本而不是 string.h 中的原型?
enter code here
#include <conio.h>
#include <string.h>
char *strcpy(char *source , const char *dest);
void main()
{
char *s, *d;
strcpy(s,d);
getch();
}
#include <stdio.h>
char *strcpy(char *strDestination, const char *strSource)
{
char *ptr;
printf("made it!");
return ptr;
}