home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / Samples / CSAPE32.ARJ / INCLUDE / STRDECL.H < prev    next >
C/C++ Source or Header  |  1990-04-12  |  806b  |  32 lines

  1. /*
  2.     strdecl.h        7/27/88
  3.  
  4.     % Include File for string functions.
  5.  
  6.     OWL 1.2
  7.     Copyright (c) 1986, 1987, 1988, by Oakland Group, Inc.
  8.     ALL RIGHTS RESERVED.
  9.  
  10.     Revision History:
  11.     -----------------
  12.      3/28/90 jmd    ansi-fied
  13.      4/11/90 mla    added strmask
  14. */
  15.  
  16. /* STRTOOLS.C */
  17. extern char       *strleft(char *s, int len);
  18. extern char       *strright(char *s, int len);
  19. extern char       *strcenter(char *s, int len);
  20. extern char       *strclip(char *s);
  21. extern char       *strpreclip(char *s);
  22. extern char       *strpad(char *s, int len);
  23. extern char       *strfill(char *s, char chr, int count);
  24. extern char        invert_char(char c);
  25. extern char       *strcompact(char *s);
  26.  
  27. /* STRWRAP.C */
  28. extern char       *strwrap(char *text, int *row, int width);
  29.  
  30. /* STRMASK.C */
  31. extern boolean strmask(char *str, char *mask);
  32.