代码搜索:String
找到约 10,000 项符合「String」的源代码
代码结果 10,000
www.eeworm.com/read/456129/7357237
h string.h
#if !defined(__STRING_H)
# include
#endif
class String
{
public:
char * string;
String()
{
string = 0;
}
String(char * s)
{
string = new char[strlen(s) + 1];
www.eeworm.com/read/455033/7378530
edp string.edp
// bug string macro parameter version < 1.41
// bug in string parameter version before
www.eeworm.com/read/455033/7378585
edp ._string.edp
www.eeworm.com/read/455033/7379107
hpp string.hpp
// -*- Mode : c++ -*-
//
// SUMMARY :
// USAGE :
// ORG :
// AUTHOR : Frederic Hecht
// E-MAIL : hecht@ann.jussieu.fr
//
/*
This file is part of Freefem++
Freefem++
www.eeworm.com/read/455033/7379117
hpp ._string.hpp
www.eeworm.com/read/454358/7393222
chm string.chm
www.eeworm.com/read/454275/7395277
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/454275/7395308
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/452710/7435984
h string.h
/* string.h */
void *memcpy(void *, const void *, size_t);
void *memset(void *, int, size_t);
char *index(const char *, char);
char *strcat(char *, char *), strncat(char *, char *, size_t);
cha
www.eeworm.com/read/451977/7452787
c string.c
#include
#include
#define MAXSIZE 256
#define N 30
typedef struct {
char str[MAXSIZE];
int length ;
} string;
/*文本统计*/
void txttotal(char fname[], i