mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-01-03 04:04:29 +03:00
6 lines
97 B
C
6 lines
97 B
C
|
#include <stdio.h>
|
||
|
int fgetpos(FILE* file,fpos_t* pos)
|
||
|
{
|
||
|
*pos=file->filepos;
|
||
|
return 0;
|
||
|
}
|