原始内容
高亮显示
复制内容
/* * sys/ftell.c * * We can't seek, but we can at least tell... */ #include <stdio.h> #include "sys/file.h" long ftell(FILE * stream) { int fd = fileno(stream); struct file_info *fp = &__file_info[fd]; return fp->i.offset; }
您还没有登录,登录后您可以:
首次使用?从这里 注册