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

📄 stdio.c

📁 source of perl for linux application,
💻 C
字号:
/* This provides a test of STDIO and emulates a library that   has been built outside of the PerlIO system and therefore is   built using FILE* rather than PerlIO * (a common occurrence   for XS).   Use a separate file to make sure we are not contaminated by   PerlIO.*/#include <stdio.h>/* Open a file for write */FILE * xsfopen ( const char * path ) {  FILE * stream;  stream = fopen( path, "w");  return stream;}int xsfclose ( FILE * stream ) {  return fclose( stream );}int xsfprintf ( FILE * stream, const char * text ) {  return fprintf( stream, text );}

⌨️ 快捷键说明

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