📄 stdio.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 + -