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

📄 sre_ctype.c

📁 hmmer源程序
💻 C
字号:
/***************************************************************** * HMMER - Biological sequence analysis with profile HMMs * Copyright (C) 1992-1999 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. *****************************************************************//* sre_ctype.c *  * For portability. Some systems have functions tolower, toupper * as macros (for instance, MIPS M-2000 RISC/os!) *  * RCS $Id: sre_ctype.c,v 1.2 1998/10/09 18:07:16 eddy Exp $ */#include <ctype.h>#include "squid.h"#ifdef MEMDEBUG#include "dbmalloc.h"#endifintsre_tolower(int c){  if (isupper(c)) return tolower(c);  else return c;}intsre_toupper(int c){  if (islower(c)) return toupper(c);  else return c;}

⌨️ 快捷键说明

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