sre_ctype.c

来自「这是一个基于HMM 模型的生物多序列比对算法的linux实现版本。hmmer」· C语言 代码 · 共 38 行

C
38
字号
/***************************************************************** * 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. *****************************************************************//* sre_ctype.c *  * For portability. Some systems have functions tolower, toupper * as macros (for instance, MIPS M-2000 RISC/os!) *  * CVS $Id: sre_ctype.c,v 1.4 2003/04/14 16:00:16 eddy Exp $ */#include "squidconf.h"#include <ctype.h>#include "squid.h"intsre_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 + =
减小字号Ctrl + -
显示快捷键?