mirror of
https://github.com/SEPPDROID/Digital-Research-Source-Code.git
synced 2025-10-23 08:24:18 +00:00
28 lines
579 B
C
28 lines
579 B
C
/************************************************************************
|
|
*
|
|
* r e w i n d F u n c t i o n
|
|
* -----------------------------
|
|
* Copyright 1982 by Digital Research Inc. All rights reserved.
|
|
*
|
|
* "rewind" sets the rdad/write pointer of a stream file to the
|
|
* beginning of the stream.
|
|
*
|
|
* Calling sequence:
|
|
* ret = rewind(sp)
|
|
* Where:
|
|
* sp -> a stream file (FILE *)
|
|
* ret = 0 for success, -1 for failure
|
|
*
|
|
*************************************************************************/
|
|
#include <stdio.h>
|
|
WORD rewind(sp)
|
|
FILE *sp;
|
|
{
|
|
return(fseek(sp,0L,0));
|
|
}
|
|
|
|
|
|
|
|
|
|
|