随笔分类 - Linux其他
摘要:1、打开多个文件 vim * -p 2、文件切换 g+t依次切换
阅读全文
摘要:#include <stdio.h>#include <stdlib.h>#include <setjmp.h> static jmp_buf env; void d(void){ fprintf(stdout,"%s\n",__func__); fprintf(stdout,"d end\n");
阅读全文
摘要:#include <stdio.h>#include <stdlib.h>#include <unistd.h>#include <string.h>#include <time.h> #define STRLENTH 1024 int main(int argc, char **argv){ in
阅读全文
摘要:/* from_charset //要转换的编码 to_charset //转换为某某编码 inbuf //要转换的字符串 inlen //要转换的长度 outbuf //输出缓存 outlen //输出长度 */ static int code_convert(char *from_charset
阅读全文