浏览代码

The prototype for strcasecmp() is apparently in strings.h.

tags/v0.9.3
Michael Brown 19 年前
父节点
当前提交
eda79ec32b
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2
    0
      src/include/strings.h

+ 2
- 0
src/include/strings.h 查看文件

51
 #define fls( x ) \
51
 #define fls( x ) \
52
 	( __builtin_constant_p ( x ) ? __constant_fls ( x ) : __fls ( x ) )
52
 	( __builtin_constant_p ( x ) ? __constant_fls ( x ) : __fls ( x ) )
53
 
53
 
54
+extern int strcasecmp ( const char *s1, const char *s2 );
55
+
54
 #endif /* _STRINGS_H */
56
 #endif /* _STRINGS_H */

正在加载...
取消
保存