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

📄 bb_grid.c

📁 早期freebsd实现
💻 C
字号:
/* ****************************************************************************** * * Module: bb_grid.c * * Functions:  *	    bb_grid_1()	- Return the information on successful testing. * * ****************************************************************************** *//* ****************************************************************************** * Include Files ****************************************************************************** */#include <stdio.h>#include <rpc/rpc.h>#include "common.h"#include "protocol.h"#include "server.h"/***************************************************************************									****  bb_grid_1() - Return a list of all of the test results.  This is	****  just an indication of how the tests are coming in general, no info	****  on which companies have done what tests will be revield.		****									***************************************************************************/BB_grid *bb_grid_1(){    static BB_grid	grid;		/* The output grid structure.	*/    /*    **  XXXX-This will be filled in later.    */    grid.status == BB_SUCCESS;    return &grid;}

⌨️ 快捷键说明

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