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

📄 tsk_version.c

📁 linux下开发的针对所有磁盘的数据恢复的源码
💻 C
字号:
/* * The Sleuth Kit * * Brian Carrier [carrier <at> sleuthkit [dot] org] * Copyright (c) 2007 Brian Carrier.  All rights reserved  * * This software is distributed under the Common Public License 1.0 *//** \file  tsk_version.c * Contains functions to print and obtain the library version. */#include "tsk_base_i.h"/** * \ingroup baselib * Print the library name and version to a handle (such as "The Sleuth Kit ver 1.00"). * @param hFile Handle to print to */voidtsk_version_print(FILE * hFile){    char *str = "The Sleuth Kit";#ifdef PACKAGE_VERSION    tsk_fprintf(hFile, "%s ver %s\n", str, PACKAGE_VERSION);#else    tsk_fprintf(hFile, "%s\n", str);#endif    return;}/** * \ingroup baselib * Return the library version as a string. * @returns String version of version (1.00 for example) */const char *tsk_version_get_str(){#ifdef PACKAGE_VERSION    return PACKAGE_VERSION;#else    return "0.0";#endif}

⌨️ 快捷键说明

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