130 str tolower (); |
130 str tolower (); |
131 |
131 |
132 // Convert string to upper case |
132 // Convert string to upper case |
133 str toupper (); |
133 str toupper (); |
134 |
134 |
|
135 // Compare this string with another |
135 int compare (const char* c); |
136 int compare (const char* c); |
136 int compare (str c); |
137 int compare (str c); |
|
138 int icompare (str c); |
|
139 int icompare (const char* c); |
137 |
140 |
138 // Counts the amount of substrings in the string |
141 // Counts the amount of substrings in the string |
139 unsigned int count (char* s); |
142 unsigned int count (char* s); |
140 |
143 |
141 #if 0 |
144 #if 0 |