IOS_$SEEK_TO_EOF Domain/OS IOS_$SEEK_TO_EOF
NAME
ios_$seek_to_eof - seek to the end of an object
SYNOPSIS (C)
#include <apollo/base.h>
#include <apollo/ios.h>
void ios_$seek_to_eof(
ios_$id_t &stream_id,
status_$t *status)
SYNOPSIS (Pascal)
%include '/sys/ins/base.ins.pas';
%include '/sys/ins/ios.ins.pas';
procedure ios_$seek_to_eof(
in stream_id: ios_$id_t;
out status: status_$t);
SYNOPSIS (FORTRAN)
%include '/sys/ins/base.ins.ftn'
%include '/sys/ins/ios.ins.ftn'
integer*2 stream_id
integer*4 status
call ios_$seek_to_eof(stream_id, status)
DESCRIPTION
Ios_$seek_to_eof moves the stream marker to the end of the object (EOF).
stream_id
The ID of a stream. Ios_$seek_to_eof will move the marker associ-
ated with stream_id to the end of the object that the stream is open
on.
status
The completion status.
SEE ALSO
ios_$seek_to_bof.