?? 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++;}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -