home *** CD-ROM | disk | FTP | other *** search
- /*
- File: ISOString.cpp
-
- Contains: Routines for manipulating ISO Strings
-
- Owned by: Vincent Lo
-
- Copyright: © 1993 - 1995 by Apple Computer, Inc., all rights reserved.
-
-
- In Progress:
-
- */
-
- #ifndef _ISOSTR_
- #include "ISOStr.h"
- #endif
-
- #ifndef _ODMEMORY_
- #include "ODMemory.h"
- #endif
-
- #include <string.h>
-
-
- ODISOStr ODISOStrFromCStr (const char* cstring)
- {
- return strcpy( (char*)ODNewPtr(strlen(cstring)+1), cstring );
- }
-
-