代码搜索:String
找到约 10,000 项符合「String」的源代码
代码结果 10,000
www.eeworm.com/read/244115/12886554
c string.c
#include "indash.h"
void Printxy_Normal(unsigned char x, unsigned char y, unsigned char *str, unsigned int attrib)
{
unsigned char i, len = 0;
unsigned char value;
while (*(str + len
www.eeworm.com/read/143125/12897487
hpp string.hpp
#ifndef __String_hpp
#define __String_hpp
#include "List.hpp"
#include
#include
class String{
public:
//构造函数
String();
String(const String& other);
String(const
www.eeworm.com/read/243981/12901939
c string.c
#ifndef __GNUC__
#error I want gcc!
#endif
#define extern
#define inline
#define __LIBRARY__
#include
www.eeworm.com/read/243981/12902052
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/243950/12905343
as double-to-string.as
// makeswf -v 7 -s 200x150 -r 1 -o double-to-string.swf double-to-string.as
trace ("Check various things for double to string conversion");
for (i = 1; i > 0.000000000000001; i /= 2) {
x = 1 / i +
www.eeworm.com/read/142909/12908580
h string.h
#ifndef _STRING_H
#define _STRING_H
char * strcpy(char * dest,const char *src);
char * strncpy(char * dest,const char *src,size_t count);
char * strcat(char * dest, const char * src);
char * strnca
www.eeworm.com/read/329670/12939615
h string.h
/* string.h
* Copyright (c) 1990 Intel Corporation, ALL RIGHTS RESERVED.
*
* string.h - string handling functions
*/
#ifndef _stringh
#define _stringh
#pragma varparams(memmove, memcpy
www.eeworm.com/read/142265/12953945
c to_string.c
/*得到数据的长度*/
unsigned short FUN_Getlen(unsigned int value)
{
if(value/100000)
{
return 6;
}
if(value/10000)
{
return 5;
}
if(value/1000)
{
return 4;
}
if(value/100)
{
www.eeworm.com/read/243219/12954568
h string.h
//串处理 静态数组
typedef struct
{
char str[MaxSize];
int length;
}String;
void Initiate(String *S)
{
S->length=0;
}
int Insert(String *S, int pos, String T)
{
int i;
if(pos