CSAD
 All Classes Namespaces Functions Variables Enumerations Enumerator Friends Groups Pages
Public Member Functions | List of all members
bt::String Class Reference

String - a long string that can contain 4 milliard 8bits characters. More...

Public Member Functions

_FORCEINLINE char * data ()
 returns an array of data.
 
_FORCEINLINE void keep ()
 saves the data array after removal of the object.
 
_FORCEINLINE unsigned _int32 length ()
 returns the number of characters in the string
 
_FORCEINLINE const char * str ()
 returns a string in the form of an array of characters.
 

Detailed Description

String - a long string that can contain 4 milliard 8bits characters.

For example:

  String a("list: ");
  a+="1, str 1.";
  printf(a.str());
  char num=a[6];
  printf(num);
See Also
bt