|
From: Henri A. <has...@us...> - 2004-10-29 09:02:26
|
Update of /cvsroot/frontierkernel/Frontier/Common/headers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18248 Modified Files: oplist.h Log Message: Added opunshifthandle() to make list additions more efficient and logical: we now only iterate through the smaller list, pushing into the longer list if the longer list is on the left side of the operand, and unshifting into the longer list if it's on the right side of the operand. Index: oplist.h =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/headers/oplist.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** oplist.h 9 Oct 2004 21:02:40 -0000 1.1 --- oplist.h 29 Oct 2004 09:02:16 -0000 1.2 *************** *** 55,58 **** --- 55,60 ---- extern boolean oppushhandle (hdllistrecord, ptrstring, Handle); + extern boolean opunshifthandle (hdllistrecord, ptrstring, Handle); + extern boolean oppushdata (hdllistrecord, ptrstring, ptrvoid, long); |