aboutsummaryrefslogtreecommitdiff
path: root/src/pkgit_string.c
diff options
context:
space:
mode:
authordacctal <donotcontactmevia@email.invalid>2026-06-29 23:58:00 +0000
committerdacctal <donotcontactmevia@email.invalid>2026-06-29 23:58:00 +0000
commite54a7dbdbb7c65d50f713f5f816dcb884259adea (patch)
treebb8345c737bacfae1415cf06a22110b54b6c0c59 /src/pkgit_string.c
parentb8a96b5fa7ccb6b170b1fb40c5ea4efe4519e568 (diff)
string concatenation (probably)
Diffstat (limited to 'src/pkgit_string.c')
-rw-r--r--src/pkgit_string.c95
1 files changed, 71 insertions, 24 deletions
diff --git a/src/pkgit_string.c b/src/pkgit_string.c
index cbcc200..6f8a0a6 100644
--- a/src/pkgit_string.c
+++ b/src/pkgit_string.c
@@ -1,23 +1,43 @@
+/*
+
+ pkgit - package it!
+
+ Copyright (C) 2026 dacctal
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
+
+*/
+
#include <ctype.h>
#include <stdio.h>
#include <string.h>
#include "pkgit_string.h"
-void print_slice(str_s slice) {
- for (size_t i = 0; i < slice.len; i++) {
- putchar(slice.data[i]);
+void slc_print(str_slc slc) {
+ for (size_t i = 0; i < slc.len; i++) {
+ putchar(slc.data[i]);
}
}
-str_s slice_from_cstr(char* cstr) {
- return (str_s) {
+str_slc slc_from_cstr(char* cstr) {
+ return (str_slc) {
.data = cstr,
.len = strlen(cstr),
};
}
-int slice_eq(str_s a, str_s b) {
+int slc_eq(str_slc a, str_slc b) {
if (a.len != b.len) return 0;
for (size_t i = 0; i < a.len; i++) {
if (a.data[i] != b.data[i]) return 0;
@@ -25,36 +45,63 @@ int slice_eq(str_s a, str_s b) {
return 1;
}
-int slice_starts_with(str_s slice, str_s prefix) {
- if (prefix.len > slice.len) return 0;
+int slc_starts_with(str_slc slc, str_slc prefix) {
+ if (prefix.len > slc.len) return 0;
for (size_t i = 0; i < prefix.len; i++) {
- if (slice.data[i] != prefix.data[i]) return 0;
+ if (slc.data[i] != prefix.data[i]) return 0;
}
return 1;
}
-str_s slice_take(str_s slice, size_t n) {
- if (n > slice.len) n = slice.len;
- return (str_s) {
- .data = slice.data,
+str_slc slc_take(str_slc slc, size_t n) {
+ if (n > slc.len) n = slc.len;
+ return (str_slc) {
+ .data = slc.data,
.len = n
};
}
-str_s slice_drop(str_s slice, size_t n) {
- if (n > slice.len) n = slice.len;
- return (str_s) {
- .data = slice.data + n,
- .len = slice.len - n
+str_slc slc_drop(str_slc slc, size_t n) {
+ if (n > slc.len) n = slc.len;
+ return (str_slc) {
+ .data = slc.data + n,
+ .len = slc.len - n
};
}
-str_s slice_trim(str_s slice) {
- while (slice.len > 0 && isspace((unsigned char)slice.data[0])) {
- slice = slice_drop(slice, 1);
+str_slc slc_trim(str_slc slc) {
+ while (slc.len > 0 && isspace((unsigned char)slc.data[0])) {
+ slc = slc_drop(slc, 1);
+ }
+ while (slc.len > 0 && isspace((unsigned char)slc.data[slc.len - 1])) {
+ slc = slc_take(slc, slc.len - 1);
+ }
+ return slc;
+}
+
+str_slc slc_split(str_slc *slc, char delimiter) {
+ size_t i = 0;
+ while(i < slc->len && slc->data[i] != delimiter) {
+ i++;
+ }
+
+ str_slc result = slc_take(*slc, i);
+ if (i < slc->len) {
+ *slc = slc_drop(*slc, i + i);
+ } else {
+ *slc = slc_drop(*slc, i);
+ }
+ return result;
+}
+
+void slc_cat(str_slc first, str_slc second, str_slc *new_slc) {
+ new_slc->len = first.len + second.len + 1;
+ char buf[new_slc->len];
+ for (size_t i = 0; i < first.len; i++) {
+ buf[i] = first.data[i];
}
- while (slice.len > 0 && isspace((unsigned char)slice.data[slice.len - 1])) {
- slice = slice_take(slice, slice.len - 1);
+ for (size_t i = first.len; i < new_slc->len; i++) {
+ buf[i] = second.data[i-first.len];
}
- return slice;
+ new_slc->data = buf;
}