📄 fputs.c
字号:
/* * fputs.c * * This isn't quite fputs() in the stdio sense, since we don't * have stdio, but it takes a file descriptor argument instead * of the FILE *. */#include <stdio.h>#include <string.h>int fputs(const char *s, FILE *file){ return _fwrite(s, strlen(s), file);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -