home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / opendc12.zip / od124os2.exe / od12osr1.exe / src / ISOStr.cpp < prev    next >
C/C++ Source or Header  |  1997-03-21  |  2KB  |  62 lines

  1. //====START_GENERATED_PROLOG======================================
  2. //
  3. //
  4. //   COMPONENT_NAME: odutils
  5. //
  6. //   CLASSES: none
  7. //
  8. //   ORIGINS: 82,27
  9. //
  10. //
  11. //   (C) COPYRIGHT International Business Machines Corp. 1995,1996
  12. //   All Rights Reserved
  13. //   Licensed Materials - Property of IBM
  14. //   US Government Users Restricted Rights - Use, duplication or
  15. //   disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  16. //       
  17. //   IBM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  18. //   ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  19. //   PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  20. //   CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
  21. //   USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
  22. //   OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE
  23. //   OR PERFORMANCE OF THIS SOFTWARE.
  24. //
  25. //====END_GENERATED_PROLOG========================================
  26. //
  27. // @(#) 1.4 com/src/utils/ISOStr.cpp, odutils, od96os2, odos29712d 7/15/96 17:58:17 [ 3/21/97 17:20:52 ]
  28. /*
  29.     File:        ISOString.cpp
  30.  
  31.     Contains:    Routines for manipulating ISO Strings
  32.  
  33.     Owned by:    Vincent Lo
  34.  
  35.     Copyright:    ⌐ 1993 - 1995 by Apple Computer, Inc., all rights reserved.
  36.  
  37.     
  38.     In Progress:
  39.         
  40. */
  41.  
  42. #ifndef _ISOSTR_
  43. #include "ISOStr.h"
  44. #endif
  45.  
  46. #if defined(_PLATFORM_OS2_) || defined(_PLATFORM_WIN32_)
  47. #include <ODPagtun.h>
  48. #endif
  49.  
  50. #ifndef _ODMEMORY_
  51. #include "ODMemory.h"
  52. #endif
  53.  
  54. #include <string.h>
  55.  
  56.  
  57. ODISOStr ODISOStrFromCStr (const char* cstring)
  58. {
  59.     return strcpy( (char*)ODNewPtr(strlen(cstring)+1), cstring );
  60. }
  61.  
  62.