Ultrix-3.1/src/libU77/fseek_.c

Compare this file to the similar file:
Show the results in this format:


/**********************************************************************
 *   Copyright (c) Digital Equipment Corporation 1984, 1985, 1986.    *
 *   All Rights Reserved. 					      *
 *   Reference "/usr/src/COPYRIGHT" for applicable restrictions.      *
 **********************************************************************/

/*
 * SCCSID: @(#)fseek_.c	3.0	4/22/86
char id_fseek[] = "(2.9BSD)  fseek_.c  1.2";
 *
 * position a file associated with a fortran logical unit
 *
 * calling sequence:
 *	ierror = fseek(lunit, ioff, ifrom)
 * where:
 *	lunit is an open logical unit
 *	ioff is an offset in bytes relative to the position specified by ifrom
 *	ifrom	- 0 means 'beginning of the file'
 *		- 1 means 'the current position'
 *		- 2 means 'the end of the file'
 *	ierror will be 0 if successful, a system error code otherwise.
 */

#include	"../libI77/fiodefs.h"
#include	<sys/types.h>

extern unit units[];

ftnint fseek_(lu, off, from)
ftnint *lu; off_t *off; ftnint *from;
{
	if (*lu < 0 || *lu >= MXUNIT)
		return((ftnint)(errno=F_ERUNIT));
	if (*from < 0 || *from > 2)
		return((ftnint)(errno=F_ERARG));
	if (!units[*lu].ufd)
		return((ftnint)(errno=F_ERNOPEN));
	if (fseek(units[*lu].ufd, (ftnint) *off, (int)*from) < 0)
		return((ftnint)errno);
	return((ftnint) 0);
}