home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / snip9707.zip / W_WRAP.H < prev    next >
C/C++ Source or Header  |  1997-07-05  |  406b  |  17 lines

  1. /* +++Date last modified: 05-Jul-1997 */
  2.  
  3. /* w_wrap.h */
  4. /* prototypes for the functions in w_wrap.c */
  5.  
  6. #ifndef W_WRAP__H
  7. #define W_WRAP__H
  8.  
  9. #include <stddef.h>     /* For size_t     */
  10. #include <stdio.h>      /* For FILE       */
  11.  
  12. char *word_wrap(char *string, size_t line_len);
  13. void set_tab_size(size_t size);
  14. void center(FILE *file, char *string, size_t width);
  15.  
  16. #endif /* W_WRAP__H */
  17.