fscanf.c
来自「mips架构的bootloader,99左右的版本 但源代码现在没人更新了」· C语言 代码 · 共 29 行
C
29 行
/************************************************************* * File: lib/fscanf.c * Purpose: Part of C runtime library * Author: Phil Bunce (pjb@carmel.com) * Revision History: * 970304 Start of revision history */#include "varargs.h"#include "stdio.h"#include <string.h>/************************************************************** fscanf(fp,fmt,va_alist)*/fscanf(fp,fmt,va_alist)char *fmt;va_dcl{va_list ap;int count;va_start(ap);count = vfscanf(fp,fmt,ap);va_end(ap);return(count);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?