/*************************************************************************/ /* */ /* Language Technologies Institute */ /* Carnegie Mellon University */ /* Copyright (c) 1999 */ /* All Rights Reserved. */ /* */ /* Permission is hereby granted, free of charge, to use and distribute */ /* this software and its documentation without restriction, including */ /* without limitation the rights to use, copy, modify, merge, publish, */ /* distribute, sublicense, and/or sell copies of this work, and to */ /* permit persons to whom this work is furnished to do so, subject to */ /* the following conditions: */ /* 1. The code must retain the above copyright notice, this list of */ /* conditions and the following disclaimer. */ /* 2. Any modifications must be clearly marked as such. */ /* 3. Original authors' names are not deleted. */ /* 4. The authors' names are not used to endorse or promote products */ /* derived from this software without specific prior written */ /* permission. */ /* */ /* CARNEGIE MELLON UNIVERSITY AND THE CONTRIBUTORS TO THIS WORK */ /* DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING */ /* ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT */ /* SHALL CARNEGIE MELLON UNIVERSITY NOR THE CONTRIBUTORS BE LIABLE */ /* FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES */ /* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN */ /* AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, */ /* ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF */ /* THIS SOFTWARE. */ /* */ /*************************************************************************/ /* Author: Alan W Black (awb@cs.cmu.edu) */ /* Date: December 1999 */ /*************************************************************************/ /* */ /* String manipulation functions */ /* */ /*************************************************************************/ #include #include #include #include #include "cst_alloc.h" #include "cst_string.h" #ifdef UNDER_CE /* WinCE does not fully implement ANSI C */ char *cst_strrchr(const char *str, int c) { char *p = (char *)str + strlen(str); while (p >= str) { if (*p == c) return p; --p; } return NULL; } double cst_atof(const char *str) { double f = 0.0; sscanf(str, "%f", &f); return f; } #else /* Sane operating system */ char *cst_strrchr(const char *str, int c) { return strrchr(str, c); } double cst_atof(const char *str) { return atof(str); } #endif /* WinCE brain damage */ char *cst_strdup(const char *str) { char *nstr = NULL; if (str) { nstr = cst_alloc(char,strlen(str)+1); strcpy(nstr,str); } return nstr; } char *cst_substr(const char *str,int start, int length) { char *nstr = NULL; if (str) { nstr = cst_alloc(char,length+1); strncpy(nstr,str+start,length); nstr[length] = '\0'; } return nstr; } char *cst_string_before(const char *s,const char *c) { char *p; char *q; p = strstr(s,c); q = cst_strdup(s); q[strlen(s)-strlen(p)] = '\0'; return q; } char *cst_downcase(const char *str) { char *dc; int i; dc = cst_strdup(str); for (i=0; str[i] != '\0'; i++) { if (isupper((int)str[i])) dc[i] = tolower((int)str[i]); } return dc; } char *cst_upcase(const char *str) { char *uc; int i; uc = cst_strdup(str); for (i=0; str[i] != '\0'; i++) { if (islower((int)str[i])) uc[i] = toupper((int)str[i]); } return uc; } int cst_member_string(const char *str, const char * const *slist) { const char * const *p; for (p = slist; *p; ++p) if (cst_streq(*p, str)) break; return *p != NULL; }