home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 August: Tool Chest / Dev.CD Aug 00 TC Disk 1.toast / pc / sample code / contributed / spriteworld / examples / utils / stringutils.h < prev   
Encoding:
Text File  |  2000-06-23  |  462 b   |  28 lines

  1. ///--------------------------------------------------------------------------------------
  2. // StringUtils.h
  3. ///--------------------------------------------------------------------------------------
  4.  
  5.  
  6. #ifndef __STRINGUTILS__
  7. #define __STRINGUTILS__
  8.  
  9. #ifndef __TYPES__
  10. #include <Types.h>
  11. #endif
  12.  
  13.  
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17.  
  18.  
  19. void PStrCpy(Str255 srcStr, Str255 dstStr);
  20. void PStrCat(Str255 srcStr, Str255 dstStr);
  21.  
  22.  
  23. #ifdef __cplusplus
  24. };
  25. #endif
  26. #endif
  27.  
  28.