代码搜索:String
找到约 10,000 项符合「String」的源代码
代码结果 10,000
www.eeworm.com/read/242742/12988465
h string.h
#pragma once
DLL_INTERNAL CString Data2HexString ( char *data, int size, int nBytesPerLine=16 );
DLL_INTERNAL int ConvStringToHexData(CString csOrgStr, BYTE *szOutBuffer, int nOutBufferSize);
enu
www.eeworm.com/read/242742/12988483
cpp string.cpp
#include "StdAfx.h"
#include "PublicFunc.h"
#include "String.h"
CString Data2HexString ( char *data, int size, int nBytesPerLine/*=16*/ )
{
CString csHexString, csTemp;
for ( int i=0; i
www.eeworm.com/read/140274/13091457
o string.o
www.eeworm.com/read/140274/13091461
c string.c
/**********************************************************************
* 统计字符数,不包括最后的'\0'
**********************************************************************/
int strlen(const char *str)
{
int i
www.eeworm.com/read/140274/13091646
h string.h
int strlen(const char *str);
int strcpy(char* to,const char* from);
www.eeworm.com/read/242043/13098100
h string.h
class String
{
private:
char *str; //串
int size; //当前长度
int maxSize; //最大单元个数
void GetNext(const String& t, int next[])const;
int KMPFind(const String& t, int s
www.eeworm.com/read/327091/13100084
cpp string.cpp
//函数结果状态代码
#define TRUE 1
#define FALSE 0
#define OK 1
#define ERROR 0
#define INFEASIBLE -1
#define OVERFLOW -2
#define NOTEXIT -3
//Status 是函数的类型,其值是函数结果状态代码
typedef int Status;
//
www.eeworm.com/read/140161/13104473
c string.c
/*
Copyright 1994-2003 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as publis