home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
POINT Software Programming
/
PPROG1.ISO
/
c
/
fli106c
/
masklong.cpp
< prev
next >
Wrap
C/C++ Source or Header
|
1992-03-11
|
620b
|
35 lines
//
// The Fusion Library Interface for DOS
// Version 1.06c
// Copyright (C) 1990, 1991, 1992
// Software Dimensions
//
// BlazeClass
//
#include "fli.h"
#ifdef __BCPLUSPLUS__
#pragma hdrstop
#endif
#include <stdlib.h>
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
//
// Mask(char *,long &)
//
// Handles output of long masks
//
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
char * BlazeClass::Mask(char *Mask,long &Value)
{
char Longy[30];
NumberMask::MaskShow(Mask,ltoa(Value,Longy,10),*this);
return 0;
}