home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 5 / DATAFILE_PDCD5.iso / utilities / d / desklib / !DeskLib / h_doc / StringCR < prev    next >
Encoding:
Text File  |  1996-05-21  |  1.5 KB  |  45 lines

  1. /*
  2.     ####             #    #     # #
  3.     #   #            #    #       #          The FreeWare C library for 
  4.     #   #  ##   ###  #  # #     # ###             RISC OS machines
  5.     #   # #  # #     # #  #     # #  #   ___________________________________
  6.     #   # ####  ###  ##   #     # #  #                                      
  7.     #   # #        # # #  #     # #  #    Please refer to the accompanying
  8.     ####   ### ####  #  # ##### # ###    documentation for conditions of use
  9.     ________________________________________________________________________
  10.  
  11.     File:    stringcr.h
  12.     Author:  Copyright © 1992, 1993 Jason Williams
  13.     Version: 1.13 (30 May 1993)
  14.     Purpose: Provides functions identical in operation to those defined in
  15.              ANSI <string.h>, except that these functions all work with strings
  16.              that have non-zero terminating characters (BASIC and the WIMP
  17.              often use a char 13 instead of a char 0 to terminate their
  18.              strings). ANY char < 32 will terminate these strings.
  19.              These functions are currently defined in Sublibrary Misc.c.*
  20. */
  21.  
  22. #ifndef __Desk_StringCR_h
  23. #define __Desk_StringCR_h
  24.  
  25. #ifdef __cplusplus
  26.     extern "C" {
  27. #endif
  28.  
  29.  
  30. /*  The functions provided by 'StringCR.h' have been relocated into the
  31.  *  'Str.h' header. This header is now provided only for backward
  32.  *  compatability with existing DeskLib programs.
  33.  */
  34.  
  35. #ifndef __Desk_Str_h
  36.     #include "Desk.Str.h"
  37. #endif
  38.  
  39. #ifdef __cplusplus
  40. }
  41. #endif
  42.  
  43.  
  44. #endif
  45.