📄 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 + -