~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mystrings/string.doc

  • Committer: Lee
  • Date: 2008-10-03 23:31:06 UTC
  • mfrom: (413.2.3 drizzle)
  • mto: This revision was merged to the branch mainline in revision 459.
  • Revision ID: lbieber@lbieber-desktop-20081003233106-tgvzu0fh25gb3xeg
breaking out enum field classes

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,uint32_t length));
131
 
 void casedn _A((string str,uint32_t length));
 
130
 void caseup _A((string str,uint length));
 
131
 void casedn _A((string str,uint 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,uint32_t length));
 
136
 void case_sort _A((string str,uint length));
137
137
 Converts string to a string with can be compared with strcmp() to
138
138
 get strings in rigth order.
139
139