campo-sirio/cb5/f4ptr.c
alex a0f5e0898b This commit was generated by cvs2svn to compensate for changes in r975,
which included commits to RCS files with non-trunk default branches.

git-svn-id: svn://10.65.10.50/trunk@976 c028cbd2-c16b-5b4b-a496-9718f37d4682
1995-02-06 15:33:45 +00:00

24 lines
425 B
C
Executable File

/* f4ptr.c (c)Copyright Sequiter Software Inc., 1990-1994, all rights reserved. */
#include "d4all.h"
#ifndef S4UNIX
#ifdef __TURBOC__
#pragma hdrstop
#endif
#endif
char *S4FUNCTION f4ptr( FIELD4 *field )
{
#ifdef S4VBASIC
if ( c4parm_check( field, 3, E4_F4PTR ) )
return 0 ;
#endif
#ifdef S4DEBUG
if ( field == 0 )
e4severe( e4parm, E4_F4PTR ) ;
#endif
return ( field->data->record + field->offset ) ;
}