tsk_img_i.h
来自「linux下开发的针对所有磁盘的数据恢复的源码」· C头文件 代码 · 共 36 行
H
36 行
/* * The Sleuth Kit * * Brian Carrier [carrier <at> sleuthkit [dot] org] * Copyright (c) 2005-2008 Brian Carrier. All rights reserved * * This software is distributed under the Common Public License 1.0 */#ifndef _TSK_IMG_I_H#define _TSK_IMG_I_H/* * Contains the internal library definitions for the disk image functions. This should * be included by the code in the img library. */// include the base internal header file#include "tsk3/base/tsk_base_i.h"// include the external disk image header file#include "tsk_img.h"// other standard includes#include <sys/types.h>#include <sys/stat.h>#include <string.h>#include <fcntl.h>#include <errno.h>// Cygwin needs this, but not everyone defines it#ifndef O_BINARY#define O_BINARY 0#endif#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?