⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 own_stdio.h

📁 这是针对 Linux (i386)平台的 minigui 3.6.2 开发包(MiniGUI-Processes 运行模式)。
💻 H
字号:
/** * \file own_stdio.h * \author Wei Yongming <ymwei@minigui.org> * \date 2002/01/06 *  *  ISO C standard I/O routines - with some POSIX 1003.1 extensions * \verbatim    Copyright (C) 2002-2005 Feynman Software.    Copyright (C) 1998-2002 Wei Yongming.    This file is part of MiniGUI, a compact cross-platform Graphics     User Interface (GUI) support system for real-time embedded systems.    This program is free software; you can redistribute it and/or modify    it under the terms of the GNU General Public License as published by    the Free Software Foundation; either version 2 of the License, or    (at your option) any later version.    This program is distributed in the hope that it will be useful,    but WITHOUT ANY WARRANTY; without even the implied warranty of    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    GNU General Public License for more details.    You should have received a copy of the GNU General Public License    along with this program; if not, write to the Free Software    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA    If you are using MiniGUI for developing commercial, proprietary, or other    software not covered by the GPL terms, you must have a commercial license    for MiniGUI. Please see http://www.minigui.com/product/index.html for     how to obtain this. If you are interested in the commercial MiniGUI     licensing, please write to sales@minigui.com.  \endverbatim *//* * $Id: own_stdio.h,v 1.8 2005/01/31 09:49:30 weiym Exp $ * *             MiniGUI for Linux/uClinux, eCos, uC/OS-II, VxWorks version 1.6.x *             Copyright (C) 2002-2005 Feynman Software. *             Copyright (C) 1998-2002 Wei Yongming. */#ifndef OWN_STDIO_H#define OWN_STDIO_H#include <stdio.h>#include <stddef.h>#include <stdarg.h>#include "endianrw.h"#ifdef __cplusplusextern "C" {#endifextern MG_RWops __mg_def_dev;MG_EXPORT int own_printf( const char * format, ... );MG_EXPORT int own_fprintf( FILE * stream, const char * format, ... );MG_EXPORT int own_sprintf( char * str, const char * format, ... );MG_EXPORT int own_fnprintf( FILE * stream, size_t length, const char * format, ... );MG_EXPORT int own_snprintf( char * str, size_t length, const char * format, ... );MG_EXPORT int own_vprintf( const char * format, va_list args );MG_EXPORT int own_vfprintf( FILE * stream, const char * format, va_list args );MG_EXPORT int own_vsprintf( char * str, const char * format, va_list args );MG_EXPORT int own_vfnprintf( FILE * stream, size_t length, const char * format, va_list args );MG_EXPORT int own_vsnprintf( char * str, size_t length, const char * format, va_list args );MG_EXPORT int own_scanf( const char * format, ... );MG_EXPORT int own_fscanf( FILE * stream, const char * format, ... );MG_EXPORT int own_sscanf( const char * str, const char * format, ... );MG_EXPORT int own_vscanf( const char * format, va_list args );MG_EXPORT int own_vfscanf( FILE * stream, const char * format, va_list args );MG_EXPORT int own_vsscanf( const char * str, const char * format, va_list args );#ifdef __cplusplus};  /* end of extern "C" */#endif#endif /* OWN_STDIO_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -