?? llservice.c
字號:
/* * This is sample code generated by rpcgen. * These are only templates and you can use them * as a guideline for developing your own functions. */#include <stdio.h>#include <stdlib.h>#include "ll.h"/* remote procedure that sums the ints in the linked list */ int *sum_1_svc(foo *argp, struct svc_req *rqstp){ static int result; result=0; while (argp) { result += argp->x; argp = argp->next; } return (&result);}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -