⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xdr_bool_t.c

📁 VXWORKS源代码
💻 C
字号:
/* 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -