home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / UDEL.ZIP / SF.H < prev    next >
Text File  |  1988-08-23  |  2KB  |  35 lines

  1. int sf_find_last_char(char,char *);
  2. /******************************************************************************
  3. * sf_find_last_ch  = find last position in string the ch is present          *
  4. *             return position.                          *
  5. *             return -1 if ch not in string.                  *
  6. ******************************************************************************/
  7.  
  8.  
  9. void sf_copy_from(int,char *,char *);
  10. /*******************************************************************************
  11. *  sf_copy_from  copy fstring starting at position from to dest string.        *
  12. *******************************************************************************/
  13.  
  14. void sf_copy_to(int,char *,char *);
  15. /*******************************************************************************
  16. *  sf_copy_from  copy fstring starting at position from to dest string.        *
  17. *******************************************************************************/
  18.  
  19.  
  20. int sf_replace_substring(int sa,char *oss,char *nss,
  21.             char *oldstring,char *newstring);
  22. /******************************************************************************
  23. * sf_copy_to  string fstring to dest to position "to".                  *
  24. ******************************************************************************/
  25.  
  26. void sf_pause(char *message);
  27. /******************************************************************************
  28. *  replace old substring "oss" starting at postion "sa" with new substring    *
  29. *  "nss" puting new created string in newstring.                  *
  30. ******************************************************************************/
  31.  
  32.  
  33. #define NOT_FOUND  -1
  34.  
  35.