hdr_nv.h
来自「it is very important」· C头文件 代码 · 共 27 行
H
27 行
// Define the packet header for the nix vector// George F. Riley, Georgia Tech, Spring 2000#ifndef __HDR_NV_H__#define __HDR_NV_H__#include "packet.h"#include "nixvec.h"struct hdr_nv { NixVec* pNv; Nixl_t h_used; static int offset_; inline static int& offset() { return offset_; } inline static hdr_nv* access(Packet* p) { return (hdr_nv*) p->access(offset_); } /* per-field member acces functions */ NixVec*& nv() { return (pNv); } Nixl_t* used() { return &h_used;}};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?