public inbox for ~johnnyrichard/olang-devel@lists.sr.ht
 help / color / mirror / code / Atom feed
438174ca47177cf05861d7fe91dcbbf30da97041 blob 1386 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
 
/*
 * Copyright (C) 2024 olang maintainers
 *
 * 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 3 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 "string_view.h"

#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>

string_view_t
string_view_from_cstr(char *cstr) {
    return (string_view_t){
        .chars = cstr,
        .size = strlen(cstr),
    };
}

bool
string_view_eq_to_cstr(string_view_t str, char *cstr) {
    size_t cstr_len = strlen(cstr);
    if (str.size != cstr_len) {
        return false;
    }

    size_t i = 0;
    while (i < cstr_len && str.chars[i] == cstr[i]) {
        i++;
    }
    return i == cstr_len;
}

uint32_t
string_view_to_u32(string_view_t str) {
    char ret[str.size + 1];
    ret[str.size] = 0;
    memcpy(ret, str.chars, str.size);
    return atoi(ret);
}
debug log:

solving 438174c ...
found 438174c in http://lists.johnnyrichard.com/olang/20241010013318.222905-6-carlos@maniero.me/
found 22cb61e in http://lists.johnnyrichard.com/olang/20241010013318.222905-3-carlos@maniero.me/
found b4d4103 in https://git.johnnyrichard.com/olang.git
preparing index
index prepared:
100644 b4d4103cfd02d11aebb23859d0543085b06aaa37	src/string_view.c

applying [1/2] http://lists.johnnyrichard.com/olang/20241010013318.222905-3-carlos@maniero.me/
diff --git a/src/string_view.c b/src/string_view.c
index b4d4103..22cb61e 100644


applying [2/2] http://lists.johnnyrichard.com/olang/20241010013318.222905-6-carlos@maniero.me/
diff --git a/src/string_view.c b/src/string_view.c
index 22cb61e..438174c 100644

Checking patch src/string_view.c...
Applied patch src/string_view.c cleanly.
Checking patch src/string_view.c...
Applied patch src/string_view.c cleanly.

index at:
100644 438174ca47177cf05861d7fe91dcbbf30da97041	src/string_view.c

Code repositories for project(s) associated with this public inbox

	https://git.johnnyrichard.com/olang.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox