bbstring.h 650 B

1234567891011121314151617181920212223242526
  1. #ifndef BBSTRING_H
  2. #define BBSTRING_H
  3. #include "basic.h"
  4. BBStr * bbString( BBStr *s,int n );
  5. BBStr * bbLeft( BBStr *s,int n );
  6. BBStr * bbRight( BBStr *s,int n );
  7. BBStr * bbReplace( BBStr *s,BBStr *from,BBStr *to );
  8. int bbInstr( BBStr *s,BBStr *t,int from );
  9. BBStr * bbMid( BBStr *s,int o,int n );
  10. BBStr * bbUpper( BBStr *s );
  11. BBStr * bbLower( BBStr *s );
  12. BBStr * bbTrim( BBStr *s );
  13. BBStr * bbLSet( BBStr *s,int n );
  14. BBStr * bbRSet( BBStr *s,int n );
  15. BBStr * bbChr( int n );
  16. int bbAsc( BBStr *s );
  17. int bbLen( BBStr *s );
  18. BBStr * bbHex( int n );
  19. BBStr * bbBin( int n );
  20. BBStr * bbCurrentDate();
  21. BBStr * bbCurrentTime();
  22. #endif