home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / Compilers / digital marsC compier / dm / include / Tabsize.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-03-16  |  513 b   |  26 lines

  1. /* Copyright (C) 1986-2001 by Digital Mars. $Revision: 1.1.1.1 $ */
  2. #if __SC__ || __RCC__
  3. #pragma once
  4. #endif
  5.  
  6. #ifndef __TABSIZE_H
  7. #define __TABSIZE_H 1   
  8.  
  9. #ifdef __cplusplus
  10. extern "C"
  11.   {
  12. #endif
  13.  
  14.           void __cdecl tab_sizeset(unsigned short newtabsize);
  15.           void __cdecl tab_sizeputenv(unsigned short newtabsize);
  16. unsigned short __cdecl tab_sizeget(void);
  17. unsigned short __cdecl tab_sizegetenv(void);
  18.  
  19. extern unsigned short _tab_size;
  20.  
  21. #ifdef __cplusplus
  22.   }
  23. #endif
  24.  
  25. #endif
  26.