📄 utils.c
字号:
#include <stdio.h>#include "const.h"#include "type.h"#include "extern.h"#include "exfunc.h"int erfunc(char *s, int val){ fprintf(stderr, "%s %d\n", s, val); exit(1);}void struct_cp(to, from, size) char *to,*from; int size;{ int s; s = size; while(s--) *to++ = *from++;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -