index
:
sbos.git
master
Unnamed repository; edit this file 'description' to name the repository.
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
userland
/
libc
/
stdio
/
ftell.c
blob: 1729d743b2847a348ed51f303616af4891b9fb9e (
plain
)
1
2
3
4
5
#include <stdio.h> long ftell(FILE *stream) { return fseek(stream, 0, SEEK_CUR); }