~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mystrings/string.doc

  • Committer: Brian Aker
  • Date: 2008-10-06 06:47:29 UTC
  • Revision ID: brian@tangent.org-20081006064729-2i9mhjkzyvow9xsm
RemoveĀ uint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
127
127
 strlength(const string str)
128
128
 Return length of string with end-space:s not counted.
129
129
 
130
 
 void caseup _A((string str,uint length));
131
 
 void casedn _A((string str,uint length));
 
130
 void caseup _A((string str,uint32_t length));
 
131
 void casedn _A((string str,uint32_t length));
132
132
 void caseup_str _A((string str));
133
133
 void casedn_str _A((string str));
134
134
 Converts strings or part of string to upper or lower-case.
135
135
 
136
 
 void case_sort _A((string str,uint length));
 
136
 void case_sort _A((string str,uint32_t length));
137
137
 Converts string to a string with can be compared with strcmp() to
138
138
 get strings in rigth order.
139
139