发布时间:2013-08-29 19:51:44
在Linux环境下的编辑器有vi、vim、gedit等等。进入这些编辑器之后,为了方便我们需要编辑器显示出当前的行号,可偏偏编辑器默认是不会显示行号的。我们有二种办法可以解决: 第一种是,手动显示:在vim命令行模式下输入 :set nu .........【阅读全文】
发布时间:2013-08-28 20:05:50
#include<stdio.h>#include<malloc.h>#include<stdlib.h>typedef enum sk_error_code_e{ SK_APP_LIST_SUCCESS = 0, SK_APP_LIST_FAILD}sk_error_code_t;typedef char DATA;typedef struct node{ DATA data; struct node *next;}list;int sk_app_list_create(struct node *sk_app_list_head);i.........【阅读全文】