代码搜索:String
找到约 10,000 项符合「String」的源代码
代码结果 10,000
www.eeworm.com/read/320714/13419234
c string.c
/*
* linux/lib/string.c
*
* (C) 1991 Linus Torvalds
* 所有字符串操作函数已经在string.h 中实现,因此string.c 程序仅包含string.h 头文件。
#ifndef __GNUC__ // 需要GNU 的C 编译器编译。
#error "I want gcc!"
#endif
*/
#
www.eeworm.com/read/320714/13419267
h string.h
#ifndef _STRING_H_
#define _STRING_H_
/*
其实vc编译器本身包含了这些函数定义,我们完全可以把string.h内的函数定义
都注释掉,然后为每个.c文件编译时加上/Ox编译选项即可。
*/
#ifndef NULL
#define NULL 0
#endif
#ifndef _SIZE_T
#define _SIZE_T
typedef
www.eeworm.com/read/320714/13419394
c string.c
/*
* linux/lib/string.c
*
* (C) 1991 Linus Torvalds
*/
#ifndef __GNUC__ // 需要GNU 的C 编译器编译。
#error I want gcc!
#endif
#define extern
#define inline
#define __LIBRARY__
#include
www.eeworm.com/read/320714/13419424
h string.h
#ifndef _STRING_H_
#define _STRING_H_
#ifndef NULL
#define NULL ((void *) 0)
#endif
#ifndef _SIZE_T
#define _SIZE_T
typedef unsigned int size_t;
#endif
extern char *strerror (int errno);
/*
* This
www.eeworm.com/read/320706/13419750
chm string.chm
www.eeworm.com/read/319885/13440226
chm string.chm
www.eeworm.com/read/317396/13505257
ini string.ini
[String]
ClientSoftVersionError=游戏版本错误!!!
DownLoadNewClientSoft=请到网站上下载最新版本游戏客户端软件。
ForceDisConnect=连接被强行中断!!!
ClientSoftVersionTooOld=您现在使用的客户端软件版本太老了,大量的游戏效果新将无法使用。
DownLoadAndUseNewClient=为了更好
www.eeworm.com/read/317374/13505390
h string.h
www.eeworm.com/read/317374/13505426