|
@@ -104,6 +104,16 @@ struct BBClass_String{
|
|
BBString* (*bbStringFromLongInt)( BBLONGINT n );
|
|
BBString* (*bbStringFromLongInt)( BBLONGINT n );
|
|
BBULONGINT (*bbStringToULongInt)( BBString *t );
|
|
BBULONGINT (*bbStringToULongInt)( BBString *t );
|
|
BBString* (*bbStringFromULongInt)( BBULONGINT n );
|
|
BBString* (*bbStringFromULongInt)( BBULONGINT n );
|
|
|
|
+
|
|
|
|
+ int (*bbStringToDoubleEx)( BBString *str, double *val, int start, int end, BBULONG format, BBString *sep );
|
|
|
|
+ int (*bbStringToFloatEx)( BBString *str, float *val, int start, int end, BBULONG format, BBString *sep );
|
|
|
|
+ int (*bbStringToIntEx)( BBString *str, int *val, int start, int end, BBULONG format, int base );
|
|
|
|
+ int (*bbStringToUIntEx)( BBString *str, unsigned int *val, int start, int end, BBULONG format, int base );
|
|
|
|
+ int (*bbStringToLongEx)( BBString *str, BBInt64 *val, int start, int end, BBULONG format, int base );
|
|
|
|
+ int (*bbStringToULongEx)( BBString *str, BBUInt64 *val, int start, int end, BBULONG format, int base );
|
|
|
|
+ int (*bbStringToSizeTEx)( BBString *str, BBSIZET *val, int start, int end, BBULONG format, int base );
|
|
|
|
+ int (*bbStringToLongIntEx)( BBString *str, BBLONGINT *val, int start, int end, BBULONG format, int base );
|
|
|
|
+ int (*bbStringToULongIntEx)( BBString *str, BBULONGINT *val, int start, int end, BBULONG format, int base );
|
|
};
|
|
};
|
|
|
|
|
|
extern struct BBClass_String bbStringClass;
|
|
extern struct BBClass_String bbStringClass;
|