sqdconfig_main.c
来自「这是一个基于HMM 模型的生物多序列比对算法的linux实现版本。hmmer」· C语言 代码 · 共 34 行
C
34 行
/***************************************************************** * HMMER - Biological sequence analysis with profile HMMs * Copyright (C) 1992-2003 Washington University School of Medicine * All Rights Reserved * * This source code is distributed under the terms of the * GNU General Public License. See the files COPYING and LICENSE * for details. *****************************************************************//* sqdconfig_main.c * SRE, Tue Mar 5 15:58:27 2002 [St. Louis] * * Small C program designed to print out information on squid's * compile-time configuration options - testsuite scripts can * call this to determine what optional stuff is compiled in. * * CVS $Id: sqdconfig_main.c,v 1.1 2002/03/05 23:11:28 eddy Exp $ */#include <stdio.h>#include <stdlib.h>#include "squid.h"int main(void){#ifdef HAS_64BIT_FILE_OFFSETS printf("%-30s true\n", "HAS_64BIT_FILE_OFFSETS");#else printf("%-30s false\n", "HAS_64BIT_FILE_OFFSETS");#endif}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?