[sword-cvs] sword/src/utilfuns unixstr.cpp,1.2,1.3 utilstr.cpp,1.24,1.25

sword@www.crosswire.org sword@www.crosswire.org
Thu, 26 Jun 2003 19:21:08 -0700


Update of /usr/local/cvsroot/sword/src/utilfuns
In directory www:/tmp/cvs-serv21064/src/utilfuns

Modified Files:
	unixstr.cpp utilstr.cpp 
Log Message:
	Removed all std::string references from API and
		mostly replaced with SWBuf
	Added int max param to SWBuf::append
	Added some file copy functions to FileMgr
	Moved some more install stuff to installmgr



Index: unixstr.cpp
===================================================================
RCS file: /usr/local/cvsroot/sword/src/utilfuns/unixstr.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** unixstr.cpp	1 Oct 2002 19:52:41 -0000	1.2
--- unixstr.cpp	27 Jun 2003 02:21:05 -0000	1.3
***************
*** 2,5 ****
--- 2,6 ----
  
  #include <unixstr.h>
+ #include <string.h>
  
  SWORD_NAMESPACE_START

Index: utilstr.cpp
===================================================================
RCS file: /usr/local/cvsroot/sword/src/utilfuns/utilstr.cpp,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -d -r1.24 -r1.25
*** utilstr.cpp	27 Jun 2003 01:41:08 -0000	1.24
--- utilstr.cpp	27 Jun 2003 02:21:05 -0000	1.25
***************
*** 1,4 ****
--- 1,5 ----
  #include <utilstr.h>
  #include <ctype.h>
+ #include <string.h>
  
  #ifdef _ICU_
***************
*** 10,14 ****
  #include <unicode/unistr.h>
  #include <unicode/translit.h>
- #include <string.h>
  
  #endif
--- 11,14 ----