X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Frewind.c;h=fdcb4301456d442d60dfb26d1d16835472f06689;hb=70f1c6f7c9d515ef426da68973511f46de57005a;hp=0dd56ae181a16742b174f4f31871e8825f1a09e8;hpb=34893ecc2200dc7017c36a54cb6c5f4c2378b5ec;p=pdclib diff --git a/functions/stdio/rewind.c b/functions/stdio/rewind.c index 0dd56ae..fdcb430 100644 --- a/functions/stdio/rewind.c +++ b/functions/stdio/rewind.c @@ -6,3 +6,10 @@ // ---------------------------------------------------------------------------- void rewind( FILE * stream ) { /* TODO */ }; + +/* PDPC code - unreviewed +{ + fseek(stream, 0L, SEEK_SET); + return; +} +*/