QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 1223|回复: 4

像strlen,strcmp这样的函数的源码在哪呀!

[复制链接]
发表于 2003-9-15 20:34:25 | 显示全部楼层 |阅读模式
是不是在glibc里?我下了个glibc的源码包,可是在string.h有定义但找不到源码呀!
发表于 2003-9-15 22:43:16 | 显示全部楼层
找找有没有string.c之类的
回复

使用道具 举报

发表于 2003-9-16 09:33:06 | 显示全部楼层
记得看到过
这几个函数在x86下是 inline asm实现的
在头文件里面
回复

使用道具 举报

发表于 2003-10-7 11:19:00 | 显示全部楼层
int strlen(const char* str)
{
int i=0;
while(*str++) i++;
return i;
}

int strcmp( const char *string1, const char *string2 )
{
int i;
do{
i = (int)*string1 -(int)*string2;
}while(*string1++ && *string2++ && (!i) );
return i;
}
回复

使用道具 举报

发表于 2003-10-24 09:22:03 | 显示全部楼层
看数据结构好了,里面有很多这样的思维的!
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-11-13 04:21 , Processed in 0.059246 second(s), 15 queries .

© 2021 Powered by Discuz! X3.5.

快速回复 返回顶部 返回列表