home *** CD-ROM | disk | FTP | other *** search
/ POINT Software Programming / PPROG1.ISO / c / fli106c / masklong.cpp < prev    next >
C/C++ Source or Header  |  1992-03-11  |  620b  |  35 lines

  1. //
  2. // The Fusion Library Interface for DOS
  3. // Version 1.06c
  4. // Copyright (C) 1990, 1991, 1992
  5. // Software Dimensions
  6. //
  7. // BlazeClass
  8. //
  9.  
  10. #include "fli.h"
  11.  
  12. #ifdef __BCPLUSPLUS__
  13. #pragma hdrstop
  14. #endif
  15.  
  16. #include <stdlib.h>
  17.  
  18. //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  19. //
  20. // Mask(char *,long &)
  21. //
  22. // Handles output of long masks
  23. //
  24. //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  25.  
  26. char * BlazeClass::Mask(char *Mask,long &Value)
  27. {
  28.   char Longy[30];
  29.  
  30.   NumberMask::MaskShow(Mask,ltoa(Value,Longy,10),*this);
  31.  
  32.   return 0;
  33. }
  34.  
  35.