代码搜索:String
找到约 10,000 项符合「String」的源代码
代码结果 10,000
www.eeworm.com/read/247403/12661220
lib string.lib
www.eeworm.com/read/247403/12661236
var string.var
StrVar1="Primary value";
StrVar2="Secondary value".
www.eeworm.com/read/247262/12670406
h string.h
www.eeworm.com/read/146114/12670453
h string.h
#ifndef STRING_H
#define STRING_H
int str_assign(char **pstr, char *text);
int str_cat(char **pstr, char *text);
int str_striptrail(char *str);
void str_cleanup(char **pstr);
#endif /* STRING_H */
www.eeworm.com/read/146114/12670494
o string.o
www.eeworm.com/read/146114/12670524
obj string.obj
www.eeworm.com/read/146114/12670578
c string.c
/*
* string.c
*
* string handling routines
*
* (C)1999 Stefano Busti
*
*/
#include
#include
#include "string.h"
int str_assign(char **pstr, char *text)
{
char *p;
i