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