]> pd.if.org Git - pdclib/blobdiff - functions/stdio/fgetpos.c
Status review.
[pdclib] / functions / stdio / fgetpos.c
index 5d90382c25d8d71bf491bbf933d4422bd717c0b2..0d5de428280995afc9a63f3f0934b434274faa57 100644 (file)
@@ -14,6 +14,7 @@ int fgetpos( struct _PDCLIB_file_t * _PDCLIB_restrict stream, struct _PDCLIB_fpo
 {
     pos->offset = stream->pos.offset + stream->bufidx - stream->ungetidx;
     pos->status = stream->pos.status;
+    /* TODO: Add mbstate. */
     return 0;
 }