Blame


1 44ee1bac 2021-01-27 op /*
2 44ee1bac 2021-01-27 op * Copyright (c) 2020 Omar Polo <op@omarpolo.com>
3 44ee1bac 2021-01-27 op *
4 44ee1bac 2021-01-27 op * Permission to use, copy, modify, and distribute this software for any
5 44ee1bac 2021-01-27 op * purpose with or without fee is hereby granted, provided that the above
6 44ee1bac 2021-01-27 op * copyright notice and this permission notice appear in all copies.
7 44ee1bac 2021-01-27 op *
8 44ee1bac 2021-01-27 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 44ee1bac 2021-01-27 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 44ee1bac 2021-01-27 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 44ee1bac 2021-01-27 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 44ee1bac 2021-01-27 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 44ee1bac 2021-01-27 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 44ee1bac 2021-01-27 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 44ee1bac 2021-01-27 op */
16 44ee1bac 2021-01-27 op
17 44ee1bac 2021-01-27 op #include <errno.h>
18 44ee1bac 2021-01-27 op #include <string.h>
19 44ee1bac 2021-01-27 op
20 44ee1bac 2021-01-27 op #include "gmid.h"
21 44ee1bac 2021-01-27 op
22 44ee1bac 2021-01-27 op int
23 44ee1bac 2021-01-27 op starts_with(const char *str, const char *prefix)
24 44ee1bac 2021-01-27 op {
25 44ee1bac 2021-01-27 op size_t i;
26 44ee1bac 2021-01-27 op
27 44ee1bac 2021-01-27 op if (prefix == NULL)
28 44ee1bac 2021-01-27 op return 0;
29 44ee1bac 2021-01-27 op
30 44ee1bac 2021-01-27 op for (i = 0; prefix[i] != '\0'; ++i)
31 44ee1bac 2021-01-27 op if (str[i] != prefix[i])
32 44ee1bac 2021-01-27 op return 0;
33 44ee1bac 2021-01-27 op return 1;
34 44ee1bac 2021-01-27 op }
35 44ee1bac 2021-01-27 op
36 44ee1bac 2021-01-27 op int
37 44ee1bac 2021-01-27 op ends_with(const char *str, const char *sufx)
38 44ee1bac 2021-01-27 op {
39 44ee1bac 2021-01-27 op size_t i, j;
40 44ee1bac 2021-01-27 op
41 44ee1bac 2021-01-27 op i = strlen(str);
42 44ee1bac 2021-01-27 op j = strlen(sufx);
43 44ee1bac 2021-01-27 op
44 44ee1bac 2021-01-27 op if (j > i)
45 44ee1bac 2021-01-27 op return 0;
46 44ee1bac 2021-01-27 op
47 44ee1bac 2021-01-27 op i -= j;
48 44ee1bac 2021-01-27 op for (j = 0; str[i] != '\0'; i++, j++)
49 44ee1bac 2021-01-27 op if (str[i] != sufx[j])
50 44ee1bac 2021-01-27 op return 0;
51 44ee1bac 2021-01-27 op return 1;
52 44ee1bac 2021-01-27 op }
53 44ee1bac 2021-01-27 op
54 44ee1bac 2021-01-27 op ssize_t
55 44ee1bac 2021-01-27 op filesize(int fd)
56 44ee1bac 2021-01-27 op {
57 44ee1bac 2021-01-27 op ssize_t len;
58 44ee1bac 2021-01-27 op
59 44ee1bac 2021-01-27 op if ((len = lseek(fd, 0, SEEK_END)) == -1)
60 44ee1bac 2021-01-27 op return -1;
61 44ee1bac 2021-01-27 op if (lseek(fd, 0, SEEK_SET) == -1)
62 44ee1bac 2021-01-27 op return -1;
63 44ee1bac 2021-01-27 op return len;
64 44ee1bac 2021-01-27 op }