home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1994 March / Source_Code_CD-ROM_Walnut_Creek_March_1994.iso / win3 / patches / symantec / rtlinc.exe / TABSIZE.H < prev    next >
C/C++ Source or Header  |  1993-05-18  |  549b  |  28 lines

  1. /*    tabsize.h
  2.  *    controls the program wide tab size, which is used by
  3.  *    all routines that need to print tabs.
  4.  *
  5.  *    written by: G. Eric Engstrom
  6.  */
  7.  
  8. #ifndef __TABSIZE_H
  9. #define __TABSIZE_H
  10.  
  11. #ifdef __cplusplus
  12. extern "C"
  13.   {
  14. #endif
  15.  
  16.           void __cdecl tab_sizeset(unsigned short newtabsize);
  17.           void __cdecl tab_sizeputenv(unsigned short newtabsize);
  18. unsigned short __cdecl tab_sizeget(void);
  19. unsigned short __cdecl tab_sizegetenv(void);
  20.  
  21. extern unsigned short _tab_size;
  22.  
  23. #ifdef __cplusplus
  24.   }
  25. #endif
  26.  
  27. #endif
  28.