home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 16
/
CD_ASCQ_16_0994.iso
/
news
/
4611
/
fw16d.ins
/
SOURCE
/
FUNCTION
/
CHR2DATA.C
< prev
next >
Wrap
C/C++ Source or Header
|
1994-05-19
|
517b
|
25 lines
#include <ClipApi.h>
//----------------------------------------------------------------------------//
CLIPPER cChr2Data()
{
LPSTR szText = _parc( 1 );
while( * szText )
{
if( ( * szText ) >= 'A' && ( * szText ) <= 'Z' )
( * szText ) += ( 'a' - 'A' );
szText++;
}
szText = _parc( 1 );
if( szText[ 1 ] > '9' )
szText[ 1 ] -= 'a' - 'A';
_retc( _parc( 1 ) );
}
//----------------------------------------------------------------------------//