X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=_src%2FTest%2Ftools%2Fvbslib_helper_src%2Fclib.h;fp=_src%2FTest%2Ftools%2Fvbslib_helper_src%2Fclib.h;h=ca506d3b317ba9492ab39d540661e0e6f254629e;hb=b3a835050ab0797a5a3d94ba4e3b6a30670622ae;hp=5088c8195fe414a8470d79d12415d56dda5c23bc;hpb=6f4a5f31ee0636f2acacbc0f75f98ecd603e7102;p=vbslib%2Fmain.git diff --git a/_src/Test/tools/vbslib_helper_src/clib.h b/_src/Test/tools/vbslib_helper_src/clib.h index 5088c81..ca506d3 100644 --- a/_src/Test/tools/vbslib_helper_src/clib.h +++ b/_src/Test/tools/vbslib_helper_src/clib.h @@ -15,9 +15,10 @@ /*=================================================================*/ /*********************************************************************** - <<< [errnum_t] >>> +* Type: errnum_t +* ƒGƒ‰[ƒR[ƒhAƒGƒ‰[”ԍ† ************************************************************************/ -typedef int errnum_t; /* 0=no error */ +typedef int errnum_t; /* [errnum_t] 0=no error */ #ifndef NO_ERROR /* same as windows.h */ enum { NO_ERROR = 0 }; /* NO_ERROR symbol is for magic code warning only */ @@ -140,6 +141,8 @@ typedef unsigned int uint_fast32_t; typedef unsigned int uint_fast16_t; typedef unsigned int uint_fast8_t; +#define INT_FAST32_MAX INT_MAX + /********************************************************************************************* @@ -701,6 +704,8 @@ TCHAR* StrT_chrs( const TCHAR* s, const TCHAR* keys ); TCHAR* StrT_rstr( const TCHAR* String, const TCHAR* SearchStart, const TCHAR* Keyword, void* NullConfig ); TCHAR* StrT_skip( const TCHAR* s, const TCHAR* keys ); +TCHAR* StrT_rskip( const TCHAR* String, const TCHAR* SearchStart, const TCHAR* Keys, + void* NullConfig ); bool StrT_isCIdentifier( TCHAR Character ); TCHAR* StrT_searchOverOfCIdentifier( const TCHAR* Text ); int StrT_cmp_part( const TCHAR* StringA_Start, const TCHAR* StringA_Over, @@ -1358,7 +1363,7 @@ enum { F_Unicode = 1, F_Append = 2 }; int FileT_copy( const TCHAR* SrcPath, const TCHAR* DstPath ); int FileT_mkdir( const TCHAR* Path ); int FileT_del( const TCHAR* Path ); -int FileT_writePart( FILE* File, TCHAR* Start, TCHAR* Over ); +int FileT_writePart( FILE* File, const TCHAR* Start, TCHAR* Over );