home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 December / PCWorld_2001-12_cd.bin / Software / Topware / Hackman / _SETUP.1 / Utils.h < prev    next >
C/C++ Source or Header  |  2000-06-30  |  547b  |  31 lines

  1. #ifndef _UTILS_H
  2. #define _UTILS_H
  3.  
  4. void UTIL_CopyThis(char far *source,char far * dest)
  5. {int i,iLen=strlen(source);
  6.     
  7.     for(i=0;i<iLen;i++)
  8.     {
  9.         *(dest+i)=*(source+i);
  10.     }
  11. *(dest+i)=0;    //slice the tip off...
  12. }
  13.  
  14. LPSTR UTIL_StrCombine(LPSTR first,LPSTR second)
  15. {LPSTR pString;
  16.  int i,sFirst=strlen(first),sSecond=strlen(second);
  17.     pString=new char[sFirst+sSecond];
  18.  
  19.  
  20.     for(i=0;i<sFirst;i++)
  21.         pString[i]=first[i];
  22.     
  23.     for(i=0;i<sSecond;i++)
  24.         pString[i+sFirst]=second[i];
  25.  
  26.     pString[i+sFirst]='\0';
  27.  
  28. return pString;
  29. }
  30.  
  31. #endif