feof.c
来自「Axis 221 camera embedded programing inte」· C语言 代码 · 共 43 行
C
43 行
/* Copyright (C) 2004 Manuel Novoa III <mjn3@codepoet.org> * * GNU Library General Public License (LGPL) version 2 or later. * * Dedicated to Toni. See uClibc/DEDICATION.mjn3 for details. */#include "_stdio.h"#ifdef __DO_UNLOCKEDweak_alias(__feof_unlocked,feof_unlocked);#ifndef __UCLIBC_HAS_THREADS__weak_alias(__feof_unlocked,feof);#endifint __feof_unlocked(register FILE *stream){ __STDIO_STREAM_VALIDATE(stream); return __FEOF_UNLOCKED(stream);}#elif defined __UCLIBC_HAS_THREADS__int feof(register FILE *stream){ int retval; __STDIO_AUTO_THREADLOCK_VAR; __STDIO_AUTO_THREADLOCK(stream); __STDIO_STREAM_VALIDATE(stream); retval = __FEOF_UNLOCKED(stream); __STDIO_AUTO_THREADUNLOCK(stream); return retval;}#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?