代码搜索:String
找到约 10,000 项符合「String」的源代码
代码结果 10,000
www.eeworm.com/read/465763/7045211
c string.c
/*
* linux/lib/string.c
*
* (C) 1991 Linus Torvalds
*/
#ifndef __GNUC__
#error I want gcc!
#endif
#define extern
#define inline
#define __LIBRARY__
#include
www.eeworm.com/read/465763/7045242
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);
/*
* Thi
www.eeworm.com/read/378796/7069915
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/378796/7069948
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/310705/7074329
asm string.asm
; ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
; string.asm
; ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
;
www.eeworm.com/read/310705/7074343
h string.h
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
string.h
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
www.eeworm.com/read/386754/7093347
cs string.cs
using System;
namespace Eboer.MIS.PublicClass
{
///
/// String 的摘要说明。
///
public class String
{
public String()
{
//
// TODO: 在此处添加构造函数逻辑
//
}
www.eeworm.com/read/103838/7104331
c string.c
/* Copyright Abandoned 1996 TCX DataKonsult AB & Monty Program KB & Detron HB
This file is public domain and comes with NO WARRANTY of any kind */
/*
Code for handling strings with can grow dyna
www.eeworm.com/read/135045/7108900