* (all files)
* stripped svn header
* minor cleanups
; use following command to find out the history of files:
git log
git log --follow
git blame
git annotate
45 lines
865 B
C
45 lines
865 B
C
/*
|
|
* GT CLIPPER STANDARD HEADER
|
|
*
|
|
* Author....: Andy M Leighton
|
|
* BBS.......: The Dark Knight Returns
|
|
* Date......: 1993-05-23
|
|
*
|
|
* This is an original work by Andy Leighton and is placed in the
|
|
* public domain.
|
|
*/
|
|
|
|
#include "hbapi.h"
|
|
|
|
HB_FUNC( GT_CHRFIRST )
|
|
{
|
|
if( HB_ISCHAR( 1 ) && HB_ISCHAR( 2 ) )
|
|
{
|
|
const char * string = hb_parc( 2 );
|
|
const char * cset = hb_parc( 1 );
|
|
HB_ISIZ l1 = hb_parclen( 2 );
|
|
HB_ISIZ l2 = hb_parclen( 1 );
|
|
HB_ISIZ p1, p2;
|
|
|
|
p1 = p2 = 0;
|
|
|
|
do
|
|
{
|
|
for( p2 = 0; ( p2 < l2 ) && ( cset[ p2 ] != string[ p1 ] ); ++p2 )
|
|
;
|
|
|
|
if( p2 < l2 )
|
|
{
|
|
hb_retni( string[ p1 ] );
|
|
break;
|
|
}
|
|
}
|
|
while( p1++ < l1 );
|
|
|
|
if( p2 >= l2 )
|
|
hb_retni( 0 );
|
|
}
|
|
else
|
|
hb_retni( -1 );
|
|
}
|