boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 这是个什么函数定义写法
相关主题
c++ 得最基本问题
为啥gcc找不到类的构造函数?
问个问题
strlen怎么实现的
请教一个关于字符指针的简单问题
c++ string 一问
Is it safe?
Why does default exception use char *?
问几个问题
why int** cannot convert to const int** ?
相关话题的讨论汇总
话题: 写法话题: 函数话题: s1
进入Programming版参与讨论
1 (共1页)
j***i
发帖数: 1278
1
网上看到的
http://www.opensource.apple.com/source/Libc/Libc-186/string.sub
size_t
strspn(s1, s2)
const char *s1;
register const char *s2;
{
。。。。
}
这个函数signature看的很怪,我用g++编译不了
难道是很老的C吗?
X****r
发帖数: 3557
2
是K&R的写法,很老了

【在 j***i 的大作中提到】
: 网上看到的
: http://www.opensource.apple.com/source/Libc/Libc-186/string.sub
: size_t
: strspn(s1, s2)
: const char *s1;
: register const char *s2;
: {
: 。。。。
: }
: 这个函数signature看的很怪,我用g++编译不了

j***i
发帖数: 1278
3
是不是编译器已经不支持了?
那怎么写的库,怎么还有的可以运行

【在 X****r 的大作中提到】
: 是K&R的写法,很老了
p***o
发帖数: 1252
4
gcc should take it

【在 j***i 的大作中提到】
: 是不是编译器已经不支持了?
: 那怎么写的库,怎么还有的可以运行

1 (共1页)
进入Programming版参与讨论
相关主题
why int** cannot convert to const int** ?
问一个打开文件的问题
C++ Strategies and Tactics 书上一个问题求助
C库函数:strpbrk() 的实现一问
蔡鸟C++ 类型问题
a simple C++ question
a string define question (c++)
请问const myClass &src 和myClass const &src有什么区别?
大家看看这个简单的qsort排序的问题
[合集] 一个指针的小问题
相关话题的讨论汇总
话题: 写法话题: 函数话题: s1