file_util.c cleanups. Remove redundant str_chomp from str_util.c.
[oweals/opkg-lede.git] / libopkg / str_util.c
1 /* str_utils.c - the opkg package management system
2
3    Carl D. Worth
4
5    Copyright (C) 2001 University of Southern California
6
7    This program is free software; you can redistribute it and/or
8    modify it under the terms of the GNU General Public License as
9    published by the Free Software Foundation; either version 2, or (at
10    your option) any later version.
11
12    This program is distributed in the hope that it will be useful, but
13    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
18 #include "includes.h"
19
20 int str_starts_with(const char *str, const char *prefix)
21 {
22     return (strncmp(str, prefix, strlen(prefix)) == 0);
23 }
24
25 int str_ends_with(const char *str, const char *suffix)
26 {
27     int suffix_len;
28     int str_len;
29
30     str_len = strlen(str);
31     suffix_len = strlen(suffix);
32
33     if (str_len < suffix_len) {
34         return 0;
35     }
36
37     return (strcmp(str + str_len - suffix_len, suffix) == 0);
38 }
39
40 int str_tolower(char *str)
41 {
42     while (*str) {
43         *str = tolower(*str);
44         str++;
45     }
46
47     return 0;
48 }
49
50 int str_toupper(char *str)
51 {
52     while (*str) {
53         *str = toupper(*str);
54         str++;
55     }
56
57     return 0;
58 }