Initial commit of OpenSPARC T2 architecture model.
[OpenSPARC-T2-SAM] / legion / src / generic / strutil.c
CommitLineData
920dae64
AT
1/*
2* ========== Copyright Header Begin ==========================================
3*
4* OpenSPARC T2 Processor File: strutil.c
5* Copyright (c) 2006 Sun Microsystems, Inc. All Rights Reserved.
6* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES.
7*
8* The above named program is free software; you can redistribute it and/or
9* modify it under the terms of the GNU General Public
10* License version 2 as published by the Free Software Foundation.
11*
12* The above named program is distributed in the hope that it will be
13* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
14* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15* General Public License for more details.
16*
17* You should have received a copy of the GNU General Public
18* License along with this work; if not, write to the Free Software
19* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
20*
21* ========== Copyright Header End ============================================
22*/
23#include <sys/types.h>
24#include <string.h>
25#include <strings.h>
26
27#include "basics.h"
28#include "strutil.h"
29
30bool_t streq (char* a, char* b)
31{
32 return (strcmp(a, b) == 0);
33}
34
35 /* returns true if two strings A and B match, ignoring case*/
36bool_t streqi (char* a, char* b)
37{
38 return (strcasecmp(a, b) == 0);
39}
40
41 /* true if STR starts with PREFIX*/
42bool_t strprefix(char* str, char* prefix)
43{
44 int plen = strlen(prefix);
45 return (strncmp(str, prefix, plen) == 0);
46}
47
48 /* true if STR ends with SUFFIX*/
49bool_t strsuffix (char* str, char* suffix)
50{
51 int slen = strlen(suffix);
52 int l = strlen(str);
53 if (slen > l) {
54 return 0;
55 } else {
56 return (strncmp( &str[l-slen], suffix, slen) == 0);
57 }
58}
59
60