X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Frewind.c;h=fdcb4301456d442d60dfb26d1d16835472f06689;hb=e5456e3c2697c4e17fc9aa3439f2e305517b4d96;hp=0dd56ae181a16742b174f4f31871e8825f1a09e8;hpb=dcc8a8e99f69e090a03b7b868443addbc0817820;p=pdclib.old 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; +} +*/