亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? str.h

?? 功能較全面的反匯編器:反匯編器ht-2.0.15.tar.gz
?? H
字號(hào):
/* *	HT Editor *	str.h * *	Copyright (C) 2002 Stefan Weyergraf (stefan@weyergraf.de) *	Copyright (C) 2002, 2003 Sebastian Biallas (sb@biallas.net) * *	This program is free software; you can redistribute it and/or modify *	it under the terms of the GNU General Public License version 2 as *	published by the Free Software Foundation. * *	This program is distributed in the hope that it will be useful, *	but WITHOUT ANY WARRANTY; without even the implied warranty of *	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the *	GNU General Public License for more details. * *	You should have received a copy of the GNU General Public License *	along with this program; if not, write to the Free Software *	Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */#ifndef __STR_H__#define __STR_H__#include "data.h"enum StringCase {	stringCaseLower,	stringCaseUpper,	stringCaseCaps};/** *	Class for easy string handling. */class String: public Object {protected:	int mLength;	byte *mContent;public:				String(BuildCtorArg &a): Object(a) {};				String();				String(const char *s);				String(const String *s);				String(const String &s);				String(const byte *s, int aLength);				String(char c, int count = 1);	virtual			~String();		void		assign(const String *s);		void		assign(const String &s);		void		assign(const char *s);		void		assign(const byte *s, int aLength);		void		assign(char c, int count = 1);		void		assignFormat(const char *s, ...);		void		append(const String &s);		void		append(const char *s);		void		append(const byte *s, int aLength);		void		appendChar(char c);		void		appendFormat(const char *s, ...);	inline	char &		at(int aIndex) const;	inline	bool		chop();		void		clear();	virtual	String *	clone() const;	virtual	int		compareChar(char c1, char c2) const;	virtual	int		compareTo(const Object *o) const;		int		compare(const String &s) const;		int		compare(const String &s, int aMax) const;	inline	byte *		content() const;	inline	char *		contentChar() const;		uint		countChar(char c) const;		void		crop(int aNewLength);		void		del(int pos, int aLength);		void		escape(const char *aSpecialChars, bool bit7 = true);	virtual	int		findCharFwd(char c, int start = -1, int ith_match = 0) const;	virtual	int		findStringFwd(const String &s, int start = -1, int ith_match = 0) const;	virtual	int		findCharBwd(char c, int start = -1, int ith_match = 0) const;	virtual	int		findStringBwd(const String &s, int start = -1, int ith_match = 0) const;	inline	char		firstChar() const;		void		insert(const String &s, int pos);	inline	bool		isEmpty() const;	virtual	void		load(ObjectStream &s);	virtual	ObjectID	getObjectID() const;		void		grab(String &s);		byte *		grabContent();		char *		grabContentChar();	virtual	void		store(ObjectStream &s) const;	inline	char		lastChar() const;	inline	int		length() const;		bool		leftSplit(char chr, String &initial, String &rem) const;		void		prepend(const String &s);		bool		regexMatch(const String &aRegEx, Container *resultStrings = NULL) const;//		bool		regexReplace(const String &aRegEx, Container *resultStrings = NULL) const;		int		replace(String &what, String &with);		bool		rightSplit(char chr, String &initial, String &rem) const;		int		subString(int aStart, int aLength, String &result) const;		void		transformCase(StringCase c);		void		translate(const String &inAlpha, const String &outAlpha);	virtual	int		toArray(byte *buf, int buflen) const;		bool		toInt32(uint32 &u32, int defaultbase) const;		bool		toInt64(uint64 &u64, int defaultbase) const;	virtual	int		toString(char *buf, int buflen) const;	virtual	char *		toString() const;		void		unescape();	inline	char &	operator [](int aIndex) const;	inline	String &	operator =(const String &s);	inline	String &	operator =(const char *s);	inline	String &	operator +=(const String &s);	inline	String &	operator +=(const char *s);		String &	operator +=(char c);				inline	bool		operator < (const String &s) const;	inline	bool		operator > (const String &s) const;	inline	bool		operator <=(const String &s) const;	inline	bool		operator >=(const String &s) const;	inline	bool		operator ==(const String &s) const;	inline	bool		operator !=(const String &s) const;	inline	bool		operator < (const char *s) const;	inline	bool		operator > (const char *s) const;	inline	bool		operator <=(const char *s) const;	inline	bool		operator >=(const char *s) const;	inline	bool		operator ==(const char *s) const;	inline	bool		operator !=(const char *s) const;protected:		int		compare(const char *s) const;		void		realloc(int aNewSize);};String operator +(const String &s1, const String &s2);String operator +(const char *s1, const String &s2);/** *	case-insensitive string. */class IString: public String {public:				IString(BuildCtorArg &a): String(a) {};				IString();	virtual	IString *	clone() const;	virtual	int		compareChar(char c1, char c2) const;	virtual	ObjectID	getObjectID() const;};/* *	inline functions *///class MsgException;/** *	@returns char at position |aIndex| *	@throws exception if aIndex out of bounds */inline char &String::at(int aIndex) const{//	if ((uint)aIndex >= (uint)mLength) throw new MsgException("index out of bounds");	return (char &)mContent[aIndex];}/** *	Removes the last character of the string if string length is non-zero. */inline bool String::chop(){	if (mLength) {		crop(mLength-1);		return true;	} else {		return false;	}}/** *	@returns a string content ptr */inline byte *String::content() const{	return mContent;} /** *	@returns a string content ptr (as char*) */inline char *String::contentChar() const{	return (char*)mContent;} /** *	@returns first character of string *	@throws exception if string is empty */inline char String::firstChar() const{	return at(0);}/** *	@returns true if string is empty. */inline bool String::isEmpty() const{	return mLength == 0;}/** *	@returns last character of string *	@throws exception if string is empty */inline char String::lastChar() const{	return at(mLength-1);}/** *	@returns length of string */inline int String::length() const{	return mLength;}inline char &String::operator [](int aIndex) const{	return at(aIndex);}inline String &String::operator =(const String &s){	assign(s);	return *this;}inline String &String::operator =(const char *s){	assign(s);	return *this;}inline String &String::operator +=(const String &s){	append(s);	return *this;}inline String &String::operator +=(const char *s){	append(s);	return *this;}inline bool String::operator < (const String &s) const{	return compare(s) < 0;}inline bool String::operator <= (const String &s) const{	return compare(s) <= 0;}inline bool String::operator > (const String &s) const{	return compare(s) > 0;}inline bool String::operator >= (const String &s) const{	return compare(s) >= 0;}inline bool String::operator == (const String &s) const{	return compare(s) == 0;}inline bool String::operator != (const String &s) const{	return compare(s) != 0;}inline bool String::operator < (const char *s) const{	return compare(s) < 0;}inline bool String::operator <= (const char *s) const{	return compare(s) <= 0;}inline bool String::operator > (const char *s) const{	return compare(s) > 0;}inline bool String::operator >= (const char *s) const{	return compare(s) >= 0;}inline bool String::operator == (const char *s) const{	return compare(s) == 0;}inline bool String::operator != (const char *s) const{	return compare(s) != 0;}#endif

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
不卡免费追剧大全电视剧网站| 亚洲制服丝袜一区| 精一区二区三区| 欧美一区二区三区免费视频| 首页欧美精品中文字幕| 日韩免费福利电影在线观看| 国产精品影音先锋| 亚洲精品高清在线| 在线观看91精品国产麻豆| 日本欧美一区二区三区乱码| 日韩一级完整毛片| 成人av网在线| 亚洲午夜影视影院在线观看| 精品欧美乱码久久久久久1区2区| 国产suv一区二区三区88区| 亚洲黄一区二区三区| 欧美亚洲免费在线一区| 精品一区二区三区免费视频| 国产精品欧美一区喷水| 欧美在线观看一区| 极品少妇一区二区| 亚洲国产aⅴ天堂久久| 日韩女优制服丝袜电影| 91网站黄www| 麻豆精品国产传媒mv男同| 国产精品久久久久久久第一福利| 欧亚洲嫩模精品一区三区| 黄色小说综合网站| 亚洲一区二区在线播放相泽| 久久久久国产一区二区三区四区 | 久久91精品久久久久久秒播| 中文幕一区二区三区久久蜜桃| 欧美日韩精品福利| www.欧美色图| 免费成人美女在线观看| 亚洲色图自拍偷拍美腿丝袜制服诱惑麻豆| 欧美日韩一级视频| 成人av电影免费观看| 麻豆精品久久精品色综合| 亚洲精品日韩专区silk| 久久久久久97三级| 日韩一二三四区| 在线一区二区观看| 成人午夜精品在线| 精品一区二区三区在线播放视频| 一区二区三区四区五区视频在线观看| 久久蜜桃av一区精品变态类天堂 | 欧美成人精品1314www| av电影在线观看完整版一区二区 | 国产精品一区二区在线观看不卡 | 成人一二三区视频| 青青草国产精品亚洲专区无| 一区二区三区在线播放| 国产日产精品一区| 精品欧美一区二区久久| 欧美一级精品大片| 欧美精品免费视频| 欧美精品日日鲁夜夜添| 欧美日韩在线电影| 欧美色图在线观看| 在线免费不卡电影| 91亚洲永久精品| 91一区二区在线观看| 不卡一卡二卡三乱码免费网站| 国产精品996| 国产一区二区在线观看视频| 精品中文字幕一区二区小辣椒| 青青草97国产精品免费观看无弹窗版| 亚洲大尺度视频在线观看| 亚洲精品免费在线播放| 亚洲欧美一区二区三区久本道91| 国产精品日产欧美久久久久| 国产拍欧美日韩视频二区| 久久久www成人免费无遮挡大片| 精品国产制服丝袜高跟| 欧美xxxx在线观看| 久久精品一区四区| 国产欧美一区二区精品仙草咪| 2020国产精品| 国产午夜精品理论片a级大结局| www国产精品av| 国产网红主播福利一区二区| 国产欧美精品一区二区色综合朱莉| 26uuu成人网一区二区三区| 久久综合久久99| 久久久美女艺术照精彩视频福利播放| 国产亚洲精品免费| 中文字幕日本乱码精品影院| 日韩二区三区四区| 精品一区二区三区在线播放视频| 国产精品小仙女| eeuss鲁片一区二区三区在线看| 91丨porny丨中文| 欧美性色黄大片| 日韩一区二区三区视频| 久久久久久电影| 亚洲六月丁香色婷婷综合久久| 亚洲国产精品视频| 狠狠色丁香婷综合久久| 北条麻妃国产九九精品视频| 欧美色综合影院| 26uuu亚洲综合色| 中文字幕一区二区三区蜜月| 一区二区三区电影在线播| 日韩中文字幕1| 福利电影一区二区| 欧美日产国产精品| 久久天堂av综合合色蜜桃网| 18成人在线观看| 日本成人在线网站| 丁香天五香天堂综合| 欧美色男人天堂| 26uuu国产电影一区二区| 亚洲图片欧美激情| 蜜桃视频在线观看一区二区| 成人av电影在线播放| 日韩视频在线一区二区| 亚洲色图色小说| 韩国理伦片一区二区三区在线播放| 91视频.com| 精品国产乱码久久久久久老虎| 亚洲欧洲日韩在线| 久久se这里有精品| 91久久精品网| 国产精品视频九色porn| 全部av―极品视觉盛宴亚洲| 91丨九色丨蝌蚪丨老版| 欧美tickling网站挠脚心| 亚洲一区二区偷拍精品| 成人精品gif动图一区| 日韩欧美一区在线| 亚洲乱码国产乱码精品精可以看| 国产一区二区精品久久| 91精品国产欧美一区二区成人| 亚洲人吸女人奶水| 国产.欧美.日韩| 精品日韩av一区二区| 天天av天天翘天天综合网色鬼国产| 99热在这里有精品免费| 国产欧美精品一区二区色综合 | 欧美高清在线视频| 99久久亚洲一区二区三区青草| 日韩欧美一级在线播放| 亚洲成av人**亚洲成av**| 91在线视频播放| 国产精品美日韩| 成人一区二区三区在线观看| 精品国产区一区| 麻豆久久久久久久| 欧美日韩国产精选| 亚洲尤物视频在线| 91高清视频在线| 亚洲卡通欧美制服中文| 97精品久久久午夜一区二区三区| 国产欧美一区二区精品性色超碰| 国产乱妇无码大片在线观看| 欧美一区二区三区四区五区| 午夜视频一区二区三区| 欧美日韩国产首页在线观看| 亚洲一区二区三区不卡国产欧美| 94-欧美-setu| 国产精品成人免费| 成人av先锋影音| 中文字幕日韩精品一区 | 一本色道久久综合狠狠躁的推荐| 国产欧美一区视频| 国产成人无遮挡在线视频| 久久久www免费人成精品| 国产福利一区在线观看| 国产精品嫩草影院av蜜臀| 91在线精品一区二区三区| 伊人一区二区三区| 欧美日韩美女一区二区| 日韩黄色小视频| 2020国产成人综合网| 国产黄色91视频| 中文字幕亚洲在| 在线观看不卡视频| 日本在线不卡一区| 亚洲精品一区二区三区在线观看| 国产在线不卡视频| 国产欧美精品国产国产专区| 国产成+人+日韩+欧美+亚洲| 国产精品久久久久久久久免费相片 | 8v天堂国产在线一区二区| 日韩国产精品久久久| 欧美电影免费提供在线观看| 国产精品99久久久久久久女警| 国产精品天天摸av网| 在线精品视频一区二区| 秋霞成人午夜伦在线观看| 国产欧美一区二区三区在线看蜜臀 | 亚洲午夜在线电影| 日韩欧美在线一区二区三区| 成人一级黄色片| 亚洲成人在线免费| 国产女主播视频一区二区| 在线免费观看视频一区| 国产在线精品一区二区夜色| 国产精品欧美久久久久无广告|