home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 1 / RISC_DISC_1.iso / pd_share / code / desklib / !DeskLib / h / StringCR < prev    next >
Encoding:
Text File  |  1994-05-29  |  1.4 KB  |  33 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 __dl_stringcr_h
  23. #define __dl_stringcr_h
  24.  
  25. /*  The functions provided by 'StringCR.h' have been relocated into the
  26.  *  'Str.h' header. This header is now provided only for backward
  27.  *  compatability with existing DeskLib programs.
  28.  */
  29.  
  30. #include "Str.h"
  31.  
  32. #endif
  33.