mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-11 17:44:09 +03:00
5 lines
72 B
C
5 lines
72 B
C
|
#include <stdio.h>
|
||
|
long ftell(FILE* file)
|
||
|
{
|
||
|
return file->filepos;
|
||
|
}
|