1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
|
/*
* Copyright (c) 2007, 2010 Genome Research Ltd.
* Author(s): James Bonfield
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
*
* 3. Neither the names Genome Research Ltd and Wellcome Trust Sanger
* Institute nor the names of its contributors may be used to endorse
* or promote products derived from this software without specific
* prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY GENOME RESEARCH LTD AND CONTRIBUTORS "AS
* IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GENOME RESEARCH
* LTD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* Author(s): James Bonfield, Simon Dear, Rodger Staden,
*
* Copyright (c) 1994, 1996-1997, 2001 MEDICAL RESEARCH COUNCIL
* All rights reserved
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1 Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2 Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3 Neither the name of the MEDICAL RESEARCH COUNCIL, THE LABORATORY OF
* MOLECULAR BIOLOGY nor the names of its contributors may be used
* to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
/*
* Copyright (c) Medical Research Council 1994. All rights reserved.
*
* Permission to use, copy, modify and distribute this software and its
* documentation for any purpose is hereby granted without fee, provided that
* this copyright and notice appears in all copies.
*
* This file was written by James Bonfield, Simon Dear, Rodger Staden,
* as part of the Staden Package at the MRC Laboratory of Molecular
* Biology, Hills Road, Cambridge, CB2 2QH, United Kingdom.
*
* MRC disclaims all warranties with regard to this software.
*/
#ifdef HAVE_CONFIG_H
#include "io_lib_config.h"
#endif
#include "io_lib/misc.h"
#include <stdlib.h>
#include <ctype.h>
#include <string.h>
#include <sys/types.h>
int fstrlen(char *f, int max_f)
{
for (; max_f > 0 && (isspace(f[max_f-1]) || f[max_f-1]=='\0'); max_f--);
return max_f;
}
void f2cstr(char *f, int max_f, char *c, int max_c)
{
int i;
i = MIN(fstrlen(f,max_f),max_c);
strncpy(c,f,i);
c[i]='\0';
}
void c2fstr(char *c, int max_c, char *f, int max_f)
{
int i;
i = MIN((int)strlen(c),max_f);
memcpy(f,c,i);
for( ; i<max_f; i++) f[i]=' ';
}
char *mystrtok(char *s, char *ct)
/*
** When strtok isn't good enough
*/
{
char *this;
static char *look;
static int last;
if (s == NULL) {
if (last) return NULL;
} else {
look = s;
last = 0;
}
this = look;
for ( ; *look && strchr(ct,*look)==NULL; look++ ) ;
last = (! *look);
*look++ = '\0';
return this;
}
void str_tolower (char *s)
/*
** Convert string to lower case
*/
{
if (!s) return;
for ( ; *s ; s++ )
if (isupper(*s))
*s = tolower(*s);
}
void str_toupper (char *s)
/*
** Convert string to upper case
*/
{
if (!s) return;
for ( ; *s ; s++ )
if (islower(*s))
*s = toupper(*s);
}
#ifdef NOSTRSTR
/*
** My routines for nice sun ones.
*/
char *strstr(char *cs, char *ct)
/*
** ANSI C has the function strstr().
**
** strstr() returns a pointer to the first occurrence of the
** pattern string s2 in s1. For example, if s1 is "string
** thing" and s2 is "ing", strstr() returns "ing thing". If s2
** does not occur in s1, strstr() returns NULL.
**
** It's not always implemented. Here's my cludge:
*/
{
int i;
int len_ct;
int end;
len_ct = strlen(ct);
end = strlen(cs) - len_ct;
for (i=0;i<=end;i++)
if (strncmp(&cs[i],ct,len_ct)==0)
return &cs[i];
return NULL;
}
#endif
#ifdef NOSTRDUP
char *strdup(const char *str)
/*
** SunOS has a nice strdup() function.
**
** strdup() returns a pointer to a new string which is a dupli-
** cate of the string pointed to by s1. The space for the new
** string is obtained using malloc(3V). If the new string can-
** not be created, a NULL pointer is returned.
**
** Other ANSI C libraries don't have this. Here is my kludge:
*/
{
char *newstr;
int i = strlen(str);
if ((newstr = (char *)malloc((unsigned int)(i+1))) == NULL)
return NULL;
for (; i>=0; i--)
newstr[i] = str[i];
return newstr;
}
#endif
#ifdef NOSTRCASECMP
int strcasecmp(const char *s1, const char *s2) {
while (tolower(*s1) == tolower(*s2)) {
/* If at the end of the string, then they're equal */
if (0 == *s1)
return 0;
s1++;
s2++;
}
/* One ended before the other, so return 1 or -1 */
return (*(unsigned char *)s1) < (*(unsigned char *)s2) ? -1 : 1;
}
#endif
|