home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-05-23 | 462 b | 28 lines | [TEXT/KAHL] |
- ///--------------------------------------------------------------------------------------
- // StringUtils.h
- ///--------------------------------------------------------------------------------------
-
-
- #ifndef __STRINGUTILS__
- #define __STRINGUTILS__
-
- #ifndef __TYPES__
- #include <Types.h>
- #endif
-
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
-
- void PStrCpy(Str255 srcStr, Str255 dstStr);
- void PStrCat(Str255 srcStr, Str255 dstStr);
-
-
- #ifdef __cplusplus
- };
- #endif
- #endif
-
-