home *** CD-ROM | disk | FTP | other *** search
/ Mac Mania 2 / MacMania 2.toast / Demo's / Tools&Utilities / Updaters / Symantec C++ 6.0.1 Update / Library Updates / Mac #includes / THINK #includes / BDC.h
Encoding:
C/C++ Source or Header  |  1993-07-20  |  762 b   |  37 lines  |  [TEXT/KAHL]

  1.  
  2. /*
  3.  *  BDC.h - binary/decimal conversion
  4.  *
  5.  *  Copyright (c) 1991 Symantec Corporation.  All rights reserved.
  6.  *
  7.  *  These interfaces are based on material copyrighted
  8.  *  by Apple Computer, Inc., 1985-1991.
  9.  *
  10.  *  This material has been extracted from <Packages.h>, so that it
  11.  *  can be used without dragging in the International Utilities and
  12.  *  Script Manager interfaces.
  13.  *
  14.  */
  15.  
  16. #ifndef __BDC__
  17. #define __BDC__
  18.  
  19. #ifndef __TYPES__
  20. #include <Types.h>
  21. #endif
  22.  
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26.  
  27. pascal void StringToNum(ConstStr255Param theString,long *theNum); 
  28. void stringtonum(char *theString,long *theNum); 
  29. pascal void NumToString(long theNum,Str255 theString); 
  30. void numtostring(long theNum,char *theString); 
  31.  
  32. #ifdef __cplusplus
  33. }
  34. #endif
  35.  
  36. #endif
  37.