📄 util.c
字号:
#include <u.h>#include <libc.h>#include <bio.h>#include "snap.h"void*emalloc(ulong n){ void *v; v = malloc(n); if(v == nil){ fprint(2, "out of memory\n"); exits("memory"); } memset(v, 0, n); return v;}void*erealloc(void *v, ulong n){ v = realloc(v, n); if(v == nil) { fprint(2, "out of memory\n"); exits("memory"); } return v;}char*estrdup(char *s){ s = strdup(s); if(s == nil) { fprint(2, "out of memory\n"); exits("memory"); } return s;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -