xdr_bool_t.c

来自「the vxworks system kernel souce packeg.t」· C语言 代码 · 共 34 行

C
34
字号
/* xdr_bool_t.c  - xdr routine *//* Copyright 1984-1992 Wind River Systems, Inc. */#include "copyright_wrs.h"/*modification history--------------------01c,26may92,rrr  the tree shuffle01b,04oct91,rrr  passed through the ansification filter                  -changed functions to ansi style		  -changed includes to have absolute path from h/		  -changed copyright notice01a,19apr88,llk  created.*//*DESCRIPTIONThis module contains the eXternal Data Representation (XDR) routinefor bool_t's.*/#include "rpc/rpc.h"bool_txdr_bool_t    (        XDR *xdrs,        bool_t *objp    ){    return (xdr_bool (xdrs, objp));}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?