Home | History | Annotate | Download | only in b_BasicEm

Lines Matching full:stra

94 uint32 bbs_strlen( const char* strA )
97 while( strA[ iL++ ] != 0 );
264 int32 bbs_atoi( const char* strA )
268 uint16 iL = 0, lenL = bbs_strlen( strA );
270 while( iL < lenL && strA[ iL ] == ' ' ) iL++;
271 if( strA[ iL ] == '-' )
276 while( iL < lenL && strA[ iL ] == ' ' ) iL++;
277 while( iL < lenL && strA[ iL ] >= '0' && strA[ iL ] <= '9' )
279 valL = valL * 10 + ( strA[ iL ] - '0' );