|
From: Andre R. <and...@us...> - 2004-11-09 08:54:23
|
Update of /cvsroot/frontierkernel/Frontier/Common/headers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13992 Modified Files: strings.h Log Message: Added compareidentifiers which compares the input strings case-insensitively and returns -1, 0, or +1 as the result. Useful for maintaining the sort order of tables. Index: strings.h =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/headers/strings.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** strings.h 28 Oct 2004 22:32:16 -0000 1.4 --- strings.h 9 Nov 2004 08:54:14 -0000 1.5 *************** *** 59,62 **** --- 59,64 ---- extern short comparestrings (bigstring, bigstring); + extern short compareidentifiers (bigstring, bigstring); + extern boolean stringlessthan (bigstring, bigstring); |