w_wrap.h
来自「国外网站上的一些精典的C程序」· C头文件 代码 · 共 15 行
H
15 行
/* w_wrap.h *//* prototypes for the functions in w_wrap.c */#ifndef W_WRAP__H#define W_WRAP__H#include <stddef.h> /* For size_t */#include <stdio.h> /* For FILE */char *word_wrap(char *string, size_t line_len);void set_tab_size(size_t size);void center(FILE *file, char *string, size_t width);#endif /* W_WRAP__H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?