代码搜索:SString

找到约 985 项符合「SString」的源代码

代码结果 985
www.eeworm.com/read/303129/3815278

txt 4_1.txt

int StrInsert(SString *s, int pos, SString t) /*在串s中下标为pos的字符之前插入串t */ { int i; if (poss->len) /*插入位置不合法*/ return(0); if (s->len + t.len
www.eeworm.com/read/369952/9627885

cpp string.cpp

#include"stringhead.h" int count; int begin[80]; void Show(SString T){ puts("\n文章如下:\n==============================================================================="); for(int i=1;i
www.eeworm.com/read/345601/11802997

pas grobal2.pas

unit Grobal2; interface uses Windows, Classes,JSocket,IniFiles; const MAXLEVEL = 65535; MAXMAGIC = 40; sSTRING_GOLDNAME = '金币' ; sENCYPTSCRIPTFLAG = ';AFT_EnCyptScript';
www.eeworm.com/read/233458/14150355

bas parse.bas

Option Explicit Function Parse$ (ByVal sString As String, iReq As Integer, sDelim As String) Dim sSt As String, iCnt As Integer, iPos As Integer If Len(sDelim) = 0 Then sDelim = "," sS
www.eeworm.com/read/195829/5107078

txt 4_8.txt

int StrCat(SString *s, SString t) /*将串连接在串s的后面*/ { int i, flag; if (s->len + t.lenlen; ilen + t.len; i++) s->ch[i]=t.ch[i-s->len]; s->l
www.eeworm.com/read/303129/3815272

txt 4_8.txt

int StrCat(SString *s, SString t) /*将串连接在串s的后面*/ { int i, flag; if (s->len + t.lenlen; ilen + t.len; i++) s->ch[i]=t.ch[i-s->len]; s->l
www.eeworm.com/read/371025/9570905

pas edcodeunit.pas

unit EDcodeUnit; interface uses Windows, SysUtils, DESTR, Classes, Des; type TStringInfo = packed record btLength: Byte; nUniCode: Integer; sString: array[0..High(Byte) - 1
www.eeworm.com/read/280002/10369807

pas edcodeunit.pas

unit EDcodeUnit; interface uses Windows, SysUtils, DESTR, Classes, Des; type TStringInfo = packed record btLength: Byte; nUniCode: Integer; sString: array[0..High(Byte) - 1
www.eeworm.com/read/488791/6485596

pas edcodeunit.pas

unit EDcodeUnit; interface uses Windows, SysUtils, DESTR, Classes, Des; type TStringInfo = packed record btLength: Byte; nUniCode: Integer; sString: array[0..High(Byte) - 1
www.eeworm.com/read/195829/5107095

txt 4_4.txt

int StrEmpty(SString s) /*若串s为空则返回1,否则返回0 */ { if (s.len==0) return(1); else return(0) }