Compare commits

...

32 Commits

Author SHA1 Message Date
kdx
6051375f6a geadline first version 2023-07-24 01:06:11 +02:00
fa5a7755e4 add: replace 2023-07-23 21:08:37 +02:00
3c39d72bbe add: get_line 2023-07-23 19:57:08 +02:00
1d9de5df65 add: galloc: free: check if the ptr is valid 2023-07-23 19:38:40 +02:00
c688cfc4b1 fix: \0 2023-07-23 19:20:51 +02:00
f9fa2a5a12 add: realloc 2023-07-23 15:35:32 +02:00
c6608ad4eb add: galloc: leak check 2023-07-23 15:35:16 +02:00
7e0c7180d3 fix: galloc: put function in 'static' 2023-07-23 15:18:44 +02:00
1f60f4eab0 add: \0 in strcpy strncpy and strcat 2023-07-23 15:00:08 +02:00
Camille Chauvet
357da752fc Merge remote-tracking branch 'refs/remotes/origin/master' 2023-06-24 14:12:53 +00:00
Camille Chauvet
f79262b803 add: get_raw_bit 2023-06-24 14:10:40 +00:00
ff389a1719 Add README.md 2023-06-20 20:55:50 +00:00
Camille Chauvet
4020de85e2 clean: remove trash file 2023-06-20 13:48:28 +02:00
Camille Chauvet
752d4bcbd1 add: defini 2023-06-20 13:47:58 +02:00
Camille Chauvet
8c9e218e86 fix: test error remove 2023-06-19 15:15:59 +02:00
57e78cb70a add: signed number 2023-06-18 20:25:15 +02:00
0a152b9bef add: ntoa_s 2023-06-18 20:13:52 +02:00
7d6e6c79db add: aton_s 2023-06-18 20:07:13 +02:00
85a5b567b2 core: all int is now num 2023-06-18 20:03:32 +02:00
1b878db8fe fix: remove excution beceause it is a librairy and not program 2023-06-18 19:50:31 +02:00
8c972a3096 clean rename itoa to ntoa for number to ascii 2023-06-18 19:49:21 +02:00
764761a58f add: test to strstr strchr 2023-06-18 19:43:39 +02:00
c6728cfe49 add: split 2023-06-18 19:42:57 +02:00
a49499e78e fix: strdup: add 1 to galloc for the \0 2023-06-18 19:08:01 +02:00
22c500564a add: strdup 2023-06-18 18:48:08 +02:00
d0f4398f78 add: strchri 2023-06-18 18:11:55 +02:00
e7a752458f add: strndup 2023-06-18 18:06:17 +02:00
370657c291 fix: function have the right name 2023-06-18 17:29:30 +02:00
3e51e2f661 add: putnum 2023-06-18 17:12:45 +02:00
889006903b add: strstr 2023-06-18 16:48:35 +02:00
4f0d18ee68 use postfix and variable initialisation (#1) 2023-06-18 14:23:20 +00:00
879d6f3ea2 add: update tester now support 0 and multiple args 2023-06-18 16:10:45 +02:00
49 changed files with 829 additions and 65 deletions

24
README.md Normal file
View File

@ -0,0 +1,24 @@
# IronGOLEM
librairy for [Golem Programming Language](https://golem.re)
## How to use in your projet
You can simply add the [latest release](https://git.chauvet.pro/starnakin/IronGOLEM/releases) to your golem projet and merge IronGolem.asm with your own .asm
## Requirements
- [orga](https://kdx.re/cgit/orga/)
- [golem](https://kdx.re/cgit/golem/)
## Build
``` bash
./run.sh
```
## Fonctions list
- [aton](https://git.chauvet.pro/starnakin/IronGOLEM/wiki/aton)
- [aton_s](https://git.chauvet.pro/starnakin/IronGOLEM/wiki/aton_s)
- [bzero](https://git.chauvet.pro/starnakin/IronGOLEM/wiki/bzero)
- [aton_s](https://git.chauvet.pro/starnakin/IronGOLEM/wiki/aton_s)
- [galloc](https://git.chauvet.pro/starnakin/IronGOLEM/wiki/galloc)
- [free](https://git.chauvet.pro/starnakin/IronGOLEM/wiki/free)
- [ntoa](https://git.chauvet.pro/starnakin/IronGOLEM/wiki/ntoa)
- [ntoa_s](https://git.chauvet.pro/starnakin/IronGOLEM/wiki/ntoa_s)

4
run.sh
View File

@ -1,4 +1,4 @@
cat src/* >tmp.🗿
golemc tmp.🗿 >tmp.asm
orgaasm tmp.asm tmp.rom
orgaemu tmp.rom
# orgaasm tmp.asm tmp.rom
# orgaemu tmp.rom

18
src/aton.🗿 Normal file
View File

@ -0,0 +1,18 @@
aton(str)
{
local i = 0;
local out = 0;
loop {
if ([str + i] != '+')
break;
i++;
}
loop {
if ([str + i] == 0 | isdigit([str + i]) == 0)
break;
out = out * 10 + [str + i] - '0';
i++;
}
return out;
}

View File

@ -1,4 +1,4 @@
atoi(str)
aton_s(str)
{
local i = 0;
local sign = 0;

6
src/define.🗿 Normal file
View File

@ -0,0 +1,6 @@
define NUM_MAX = 0xffff;
define NUM_MIN = 0x0000;
define NUM_S_MIN = 0x8000;
define NUM_S_MAX = 0x7fff;
define NULL = 0;
define ZIED = NUM_MAX;

13
src/free_tab.🗿 Normal file
View File

@ -0,0 +1,13 @@
free_tab(tab)
{
local tmp = tab;
loop
{
if ([tmp] == 0)
return;
free([tmp]);
tmp++;
}
free(tab);
}

View File

@ -33,7 +33,7 @@ define LOCATION_PREV = 3;
define LOCATION_NEXT = 4;
define LOCATION_DATA = HEADER_SIZE + PADDING_SIZE;
setup_header(ptr, used, size, next_block, prev_block)
galloc_setup_header(ptr, used, size, next_block, prev_block)
{
local i;
@ -54,7 +54,7 @@ setup_header(ptr, used, size, next_block, prev_block)
}
}
find_next_space(size)
galloc_find_next_space(size)
{
local current;
@ -70,7 +70,7 @@ find_next_space(size)
}
}
print_heap()
galloc_print_heap()
{
local i;
@ -84,7 +84,7 @@ print_heap()
}
}
split_block(ptr, size)
galloc_split_block(ptr, size)
{
local old_next;
local next;
@ -100,9 +100,9 @@ split_block(ptr, size)
old_next = [ptr + LOCATION_NEXT];
next = ptr + size + HEADER_SIZE + PADDING_SIZE * 2;
prev = [ptr + LOCATION_PREV];
🗿 setup_header(ptr, used, size, next_block, prev_block);
setup_header(ptr, 1, size, ptr + HEADER_SIZE + PADDING_SIZE * 2 + size, prev);
setup_header(next, 0, old_size - size - HEADER_SIZE - PADDING_SIZE * 2, old_next, ptr);
🗿 galloc_setup_header(ptr, used, size, next_block, prev_block);
galloc_setup_header(ptr, 1, size, ptr + HEADER_SIZE + PADDING_SIZE * 2 + size, prev);
galloc_setup_header(next, 0, old_size - size - HEADER_SIZE - PADDING_SIZE * 2, old_next, ptr);
return (0);
}
@ -111,8 +111,8 @@ galloc(size)
local ptr;
if ([heap] == 0) 🗿 if the heap is not initialised
setup_header(heap, 0, HEAP_SIZE - HEADER_SIZE - PADDING_SIZE * 2, 0, 0); 🗿 initialised all the heap
ptr = find_next_space(size);
galloc_setup_header(heap, 0, HEAP_SIZE - HEADER_SIZE - PADDING_SIZE * 2, 0, 0); 🗿 initialised all the heap
ptr = galloc_find_next_space(size);
if (ptr == 0)
return (0);
if ([ptr + LOCATION_SIZE] == size)
@ -120,20 +120,20 @@ galloc(size)
[ptr + LOCATION_USED] = 1;
return (ptr + LOCATION_DATA);
}
split_block(ptr, size);
galloc_split_block(ptr, size);
return (ptr + LOCATION_DATA);
}
merge_blocks(first_block, last_block)
galloc_merge_blocks(first_block, last_block)
{
local size;
if (last_block == first_block)
{
setup_header(first_block, 0, [first_block + LOCATION_SIZE], [first_block + LOCATION_NEXT], [first_block + LOCATION_PREV]);
galloc_setup_header(first_block, 0, [first_block + LOCATION_SIZE], [first_block + LOCATION_NEXT], [first_block + LOCATION_PREV]);
}
size = last_block - first_block + [last_block + LOCATION_SIZE];
setup_header(first_block, 0, size, [last_block + LOCATION_NEXT], [first_block + LOCATION_PREV]);
galloc_setup_header(first_block, 0, size, [last_block + LOCATION_NEXT], [first_block + LOCATION_PREV]);
}
free(ptr)
@ -144,6 +144,11 @@ free(ptr)
local first_block;
local last_block;
if (ptr > heap + HEAP_SIZE | heap > ptr)
{
putstr("Error: free: invalid ptr\n");
return;
}
block = ptr - LOCATION_DATA;
prev_block = [block + LOCATION_PREV];
if (prev_block == 0 | [prev_block + LOCATION_USED])
@ -155,5 +160,10 @@ free(ptr)
last_block = block;
else
last_block = next_block;
merge_blocks(first_block, last_block);
galloc_merge_blocks(first_block, last_block);
}
leaks()
{
return ([heap + LOCATION_NEXT] != 0);
}

49
src/geadline.🗿 Normal file
View File

@ -0,0 +1,49 @@
geadline(prompt) {
local capacity = 64,
size = 0,
i = 0,
c,
buf = galloc(capacity);
if (prompt)
putstr(prompt);
if (buf == NULL)
return NULL;
loop {
red &c;
if ((c == 0xffff) | (c == 0x04)) {
if ((size == 0) | (c == 0xffff)) {
free(buf);
return 0;
}
} else if (c == 0x007f) {
if (size) {
size = size - 1;
i = i - 1;
[buf + size] = 0;
wrt 0x1b;
wrt 0x5b;
wrt 0x44;
wrt ' ';
wrt 0x1b;
wrt 0x5b;
wrt 0x44;
}
} else {
size = size + 1;
if (size > capacity) {
buf = reallocarray(buf, capacity, capacity * 2);
if (buf == NULL)
return NULL;
capacity = capacity * 2;
}
[buf + i] = c;
i = i + 1;
[buf + i] = 0;
wrt c;
if (c == '\n')
return buf;
}
}
}

32
src/get_line.🗿 Normal file
View File

@ -0,0 +1,32 @@
define GET_LINE_BUFFER=100;
get_line()
{
local tmp;
local out;
local c;
local i;
out = NULL;
i = 0;
loop
{
if (i % GET_LINE_BUFFER == 0)
{
tmp = reallocarray(out, i, i + GET_LINE_BUFFER + 1);
if (tmp == NULL)
return NULL;
}
red &c;
if (c == 0xffff)
return NULL;
[tmp + i] = c;
i++;
if (c == '\n')
break;
}
[tmp + i] = 0;
out = strdup(tmp);
free(tmp);
return out;
}

23
src/get_raw_bit.🗿 Normal file
View File

@ -0,0 +1,23 @@
get_raw_bit(number)
{
local tab = galloc(16);
if (tab == NULL)
return (NULL);
[tab] = number & 0x8000;
[tab + 1] = number & 0x4000;
[tab + 2] = number & 0x2000;
[tab + 3] = number & 0x1000;
[tab + 4] = number & 0x800;
[tab + 5] = number & 0x400;
[tab + 6] = number & 0x200;
[tab + 7] = number & 0x100;
[tab + 8] = number & 0x80;
[tab + 9] = number & 0x40;
[tab + 10] = number & 0x20;
[tab + 11] = number & 0x10;
[tab + 12] = number & 0x8;
[tab + 13] = number & 0x4;
[tab + 14] = number & 0x2;
[tab + 15] = number & 0x1;
return tab;
}

View File

@ -1,4 +1,4 @@
itoa_get_size(number)
ntoa_get_size(number)
{
local size = 0;
@ -13,12 +13,12 @@ itoa_get_size(number)
}
}
itoa(number)
ntoa(number)
{
local str;
local size;
size = itoa_get_size(number);
size = ntoa_get_size(number);
str = galloc(size + 1);
if (str == 0)
return (0);

44
src/ntoa_s.🗿 Normal file
View File

@ -0,0 +1,44 @@
ntoa_get_size(number)
{
local size = 0;
if (number == 0)
size++;
loop
{
if (number == 0)
return (size);
number = number / 10;
size++;
}
}
ntoa_s(number)
{
local str, sign, size;
if (number >= 0x8000)
{
number = 0 - number;
sign = 1;
}
size = ntoa_get_size(number);
if (sign)
size++;
str = galloc(size + 1);
if (str == 0)
return (0);
[str + size] = 0;
if (sign)
[str] = '-';
else if (number == 0)
[str] = '0';
loop
{
if (number == 0)
return (str);
[str + size - 1] = number % 10 + '0';
number = number / 10;
size--;
}
}

6
src/print_raw_bit.🗿 Normal file
View File

@ -0,0 +1,6 @@
print_raw_bit(number)
{
local tab = get_raw_bit(number), i = 0;
puttab_num(tab, 16);
free(tab);
}

9
src/putnum.🗿 Normal file
View File

@ -0,0 +1,9 @@
putnum(number)
{
local str;
str = ntoa(number);
if (str == 0)
return;
putstr(str);
free(str);
}

6
src/putnum_s.🗿 Normal file
View File

@ -0,0 +1,6 @@
putnum_s(num_s)
{
local str = ntoa_s(num_s);
putstr(str);
free(str);
}

35
src/puttab.🗿 Normal file
View File

@ -0,0 +1,35 @@
puttab_str(tab)
{
local tmp = tab;
putchar('[');
loop
{
if ([tmp] == 0)
break;
putchar('"');
putstr([tmp]);
putchar('"');
if ([tmp + 1] != 0)
putstr(", ");
tmp++;
}
putchar(']');
}
puttab_num(tab, size)
{
local i = 0;
putchar('[');
loop
{
if (i == size)
break;
putnum([tab + i]);
i++;
if (i != size)
putstr(", ");
}
putchar(']');
}

21
src/realloc.🗿 Normal file
View File

@ -0,0 +1,21 @@
reallocarray(ptr, nmemb, size)
{
local tmp;
local start;
start = ptr;
tmp = galloc(size);
if (tmp == NULL)
return NULL;
if (ptr == NULL)
return tmp;
loop
{
if (start - ptr == nmemb)
break;
[tmp + start - ptr] = [start];
start++;
}
free(ptr);
return tmp;
}

15
src/replace.🗿 Normal file
View File

@ -0,0 +1,15 @@
replace(str, fill, start, stop)
{
local out;
local sum;
out = galloc(strlen(str) + strlen(fill) - (stop - start) + 1);
if (out == NULL)
return (NULL);
strncpy(out, str, start);
strncpy(out + start, fill, strlen(fill));
sum = start + strlen(fill);
strncpy(out + sum, str + stop, strlen(str) - stop);
[out + sum + strlen(str) - stop] = 0;
return (out);
}

69
src/split.🗿 Normal file
View File

@ -0,0 +1,69 @@
split_delimiter_size(str, delimiter, delimiter_len)
{
local i = 0;
loop
{
if (strncmp(str + i, delimiter, delimiter_len) != 0 | delimiter_len == 0)
return (i);
i = i + delimiter_len;
}
}
split_get_size_need(str, delimiter)
{
local tmp = str;
local len = 0;
local delimiter_len = strlen(delimiter);
loop
{
len++;
tmp = strstr(tmp, delimiter);
if (tmp == 0 | [tmp] == 0)
return (len);
tmp = tmp + split_delimiter_size(tmp, delimiter, delimiter_len);
}
}
split_fill_tab(tab, str, delimiter, delimiter_len)
{
local tab_tmp = tab;
local tmp = str;
local next;
loop
{
next = strstr(tmp, delimiter);
if (next != 0)
[tab_tmp] = strndup(tmp, next - tmp);
else
[tab_tmp] = strdup(tmp);
if ([tab_tmp] == 0)
{
free_tab(tab);
return (1);
}
if (next == 0 | [next] == 0)
return (0);
tmp = next + split_delimiter_size(next, delimiter, delimiter_len);
tab_tmp++;
}
}
split(str, delimiter)
{
local len, tab, delimiter_len;
delimiter_len = strlen(delimiter);
len = split_get_size_need(str, delimiter);
tab = galloc(len + 1);
if (tab == 0)
return (0);
[tab + len] = 0;
if (split_fill_tab(tab, str, delimiter, delimiter_len))
{
free(tab);
return (0);
}
return (tab);
}

View File

@ -10,8 +10,10 @@ strcat(dst, src)
}
loop {
if ([src + j] == 0)
return (dst);
break;
[dst + i + j] = [src + j];
j++;
}
[dst + i + j] = 0;
return j;
}

12
src/strchri.🗿 Normal file
View File

@ -0,0 +1,12 @@
strchri(str, c)
{
local i = 0;
loop {
if ([str + i] == c)
return (i);
if ([str + i] == 0)
return (0 - 1);
i++;
}
}

View File

@ -4,8 +4,10 @@ strcpy(dst, src)
loop {
if ([src + i] == 0)
return (dst);
break;
[dst + i] = [src + i];
i++;
}
[dst + i] = 0;
return i;
}

10
src/strdup.🗿 Normal file
View File

@ -0,0 +1,10 @@
strdup(str)
{
local out;
out = galloc(strlen(str) + 1);
if (out == 0)
return (0);
strcpy(out, str);
return (out);
}

View File

@ -3,9 +3,11 @@ strncpy(dst, src, size)
local i = 0;
loop {
if ([src + i] == 0 | i == size)
return (dst);
if ([src + i] == 0 | i >= size)
break;
[dst + i] = [src + i];
i++;
}
[dst + i] = 0;
return i;
}

16
src/strndup.🗿 Normal file
View File

@ -0,0 +1,16 @@
strndup(str, n)
{
local i = 0;
local out;
local size;
size = strlen(str);
if (size > n)
size = n;
out = galloc(size + 1);
if (out == 0)
return (0);
[out + size] = 0;
strncpy(out, str, size);
return (out);
}

15
src/strstr.🗿 Normal file
View File

@ -0,0 +1,15 @@
strstr(str, to_find)
{
local to_find_size;
local tmp;
to_find_size = strlen(to_find);
loop
{
tmp = strchr(str, [to_find]);
if (tmp == 0)
return (0);
if (strncmp(tmp, to_find, to_find_size) == 0)
return (tmp);
}
}

25
src/tabcmp.🗿 Normal file
View File

@ -0,0 +1,25 @@
tabcmp_str(tab1, tab2)
{
local i = 0;
loop
{
if (strcmp([tab1 + i], [tab2 + i]) | [tab1 + i] == 0)
return ([tab1 + i] - [tab2 + i]);
i++;
}
}
tabcmp_num(tab1, tab2, size)
{
local i = 0;
if (size == 0)
return (0);
loop
{
if (i == size & [tab1 + i] == [tab2 + i])
return ([tab1 + i] - [tab2 + i]);
i++;
}
}

22
test.sh
View File

@ -1,4 +1,18 @@
cat src/*.🗿 tests/$1.🗿 tests/test.🗿 >tmp.🗿
golemc tmp.🗿 > tmp.asm
orgaasm tmp.asm tmp.rom
orgaemu tmp.rom
tester()
{
for val in $@
do
echo $val
cat src/*.🗿 tests/$val.🗿 tests/test.🗿 >tmp.🗿
golemc tmp.🗿 > tmp.asm
orgaasm tmp.asm tmp.rom
orgaemu tmp.rom
echo
done
}
if [ $# -eq 0 ]
then
tester $(ls tests/ | grep -v 'test.🗿' | sed 's/^tests\///; s/\.🗿$//' | tr '\n' ' ' );
else
tester $@;
fi

9
tests/aton.🗿 Normal file
View File

@ -0,0 +1,9 @@
main()
{
name = "aton";
test_num(aton("33"), 33, "");
test_num(aton(""), 0, "");
test_num(aton("40"), 40, "");
test_num(aton("1"), 1, "");
}

12
tests/aton_s.🗿 Normal file
View File

@ -0,0 +1,12 @@
main()
{
name = "aton_s";
test_num_s(aton_s("33"), 33, "");
test_num_s(aton_s(""), 0, "");
test_num_s(aton_s("40"), 40, "");
test_num_s(aton_s("1"), 1, "");
test_num_s(aton_s("-"), 0, "");
test_num_s(aton_s("-40"), 0 - 40, "");
test_num_s(aton_s("-1"), 0 - 1, "");
}

11
tests/define.🗿 Normal file
View File

@ -0,0 +1,11 @@
main()
{
name = "define";
test_num_s(NUM_MAX, 0 - 1, "NUM_MAX");
test_num_s(NUM_S_MAX, 0xffff / 2, "NUM_S_MAX");
test_num_s(NUM_MIN, 0, "NUM_MAX");
test_num_s(NUM_S_MIN, 0xffff / 2 + 1, "NUM_S_MAX");
test_num_s(NULL, 0, "NULL");
test_num_s(ZIED, NUM_MAX, "ZIED");
}

View File

@ -7,13 +7,18 @@ main()
name = "galloc";
ptr1 = galloc(1);
test_int(ptr1, heap + LOCATION_DATA, "");
test_num(ptr1, heap + LOCATION_DATA, "");
free(ptr1);
ptr1 = galloc(1);
test_int(ptr1, heap + LOCATION_DATA, "alloc after free");
test_num(ptr1, heap + LOCATION_DATA, "alloc after free");
free(ptr1);
ptr2 = galloc(0x9000);
test_int(ptr2, 0, "alloc too big");
test_num(ptr2, 0, "alloc too big");
test_num(leaks(), 0, "leaks");
ptr1 = galloc(1);
test_num(leaks(), 1, "leaks");
free(ptr1);
}

23
tests/get_line.🗿 Normal file
View File

@ -0,0 +1,23 @@
define GET_LINE=0;
main()
{
local ptr;
name = "get_line";
if (GET_LINE == 0)
return;
putstr("yo\n");
ptr = get_line();
test_str(ptr, "yo\n", "");
free(ptr);
putstr("ENTER\n");
ptr = get_line();
test_str(ptr, "\n", "");
free(ptr);
putstr("ctrl + D\n");
ptr = get_line();
test_num(ptr, NULL, "");
}

18
tests/get_raw_bit.🗿 Normal file
View File

@ -0,0 +1,18 @@
main()
{
local tab;
name = "get_raw_bit";
tab = get_raw_bit(1);
test_tab_num(tab, {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1}, 16, "");
free(tab);
tab = get_raw_bit(2);
test_tab_num(tab, {0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0}, 16, "");
free(tab);
tab = get_raw_bit(0x8000);
test_tab_num(tab, {1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, 16, "");
free(tab);
}

View File

@ -2,15 +2,15 @@ main()
{
local ptr;
name = "itoa";
name = "ntoa";
ptr = itoa(9000);
ptr = ntoa(9000);
test_str(ptr, "9000", "");
free(ptr);
ptr = itoa(55);
ptr = ntoa(55);
test_str(ptr, "55", "");
free(ptr);
ptr = itoa(0);
ptr = ntoa(0);
test_str(ptr, "0", "");
free(ptr);
}

26
tests/ntoa_s.🗿 Normal file
View File

@ -0,0 +1,26 @@
main()
{
local ptr;
name = "ntoa_s";
ptr = ntoa_s(9000);
test_str(ptr, "9000", "");
free(ptr);
ptr = ntoa_s(55);
test_str(ptr, "55", "");
free(ptr);
ptr = ntoa_s(0);
test_str(ptr, "0", "");
free(ptr);
ptr = ntoa_s(0 - 55);
test_str(ptr, "-55", "");
free(ptr);
ptr = ntoa_s(0 - 1);
test_str(ptr, "-1", "");
free(ptr);
}

11
tests/reallocarray.🗿 Normal file
View File

@ -0,0 +1,11 @@
main()
{
local tmp;
name = "reallocarray";
tmp = strdup("yo");
if (tmp == NULL)
return 1;
tmp = reallocarray(tmp, strlen(tmp), 5);
test_str(tmp, "yo", "");
}

9
tests/replace.🗿 Normal file
View File

@ -0,0 +1,9 @@
main()
{
name = "replace";
test_str(replace("yo ca va ?", "t", 2, 3), "yotca va ?", "");
test_str(replace("yo ca va ?", "", 2, 3), "yoca va ?", "empty fill");
test_str(replace("yo ca va ?", "aaaaa", 2, 3), "yoaaaaaca va ?", "");
test_str(replace("", "aaaaa", 0, 0), "aaaaa", "");
}

36
tests/split.🗿 Normal file
View File

@ -0,0 +1,36 @@
main()
{
local tab, reach_tab;
name = "split";
reach_tab = galloc(4);
[reach_tab] = "salut";
[reach_tab + 1] = "ca";
[reach_tab + 2] = "va";
[reach_tab + 3] = 0;
tab = split("salut ca va", " ");
test_tab_str(tab, reach_tab, "");
tab = split("salut ca va", " ");
test_tab_str(tab, reach_tab, "multiple delimiter past");
tab = split("salutbozocabozova", "bozo");
test_tab_str(tab, reach_tab, "mutiple char in delimiter");
[reach_tab] = "salut";
[reach_tab + 1] = 0;
tab = split("salut", "bozo");
test_tab_str(tab, reach_tab, "delimiter not in str");
[reach_tab] = "";
[reach_tab + 1] = 0;
tab = split("", "bozo");
test_tab_str(tab, reach_tab, "empty str");
[reach_tab] = "";
[reach_tab + 1] = 0;
tab = split("", "");
test_tab_str(tab, reach_tab, "empty delimiter and empty str🗿");
}

View File

@ -1,10 +1,14 @@
main()
{
local str;
name = "strchr";
str = "bozoman du 36";
test_str(strchr(str, 'z'), str + 2, "");
test_str(strchr(str, 0), str + 13, "");
test_str(strchr(str, '5'), 0, "");
test_str(strchr(str, '6'), str + 12, "");
test_str(strchr("", 'q'), 0, "empty str");
test_str(strchr("", 0), "", "empty str and \0 to find");
}

8
tests/strchri.🗿 Normal file
View File

@ -0,0 +1,8 @@
main()
{
name = "strchri";
test_num(strchri("bozoman", 'm'), 4, "");
test_num(strchri("bozoman", 'v'), 0 - 1, "");
test_num(strchri("", 'v'), 0 - 1, "");
}

View File

@ -2,8 +2,8 @@ main()
{
name = "strcmp";
test_int(strcmp("test", "test"), 0, "same chars");
test_int(strcmp("s", "b"), 17, "");
test_int(strcmp("", ""), 0, "empty strings");
test_int(strcmp("", "a"), 65439, "");
test_num(strcmp("test", "test"), 0, "same chars");
test_num(strcmp("s", "b"), 17, "");
test_num(strcmp("", ""), 0, "empty strings");
test_num(strcmp("", "a"), 65439, "");
}

20
tests/strcpy.🗿 Normal file
View File

@ -0,0 +1,20 @@
main()
{
local str;
name = "strcpy";
str = galloc(10);
strcpy(str, "yo");
test_str(str, "yo", "");
strcpy(str, "");
test_str(str, "", "");
strcpy(str, "bonjorsss");
strcpy(str, "bonjour");
test_str(str, "bonjour", "set last \0");
free(str);
}

14
tests/strdup.🗿 Normal file
View File

@ -0,0 +1,14 @@
main()
{
local ptr;
name = "strdup";
ptr = "bozoman";
test_str(strdup(ptr), ptr, "");
ptr = "";
test_str(strdup(ptr), ptr, "");
ptr = "hello world!";
test_str(strdup(ptr), ptr, "");
}

View File

@ -2,6 +2,6 @@ main()
{
name = "strlen";
test_int(strlen("bozoman du 36"), 13, "");
test_int(strlen(""), 0, "Empty string");
test_num(strlen("bozoman du 36"), 13, "");
test_num(strlen(""), 0, "Empty string");
}

View File

@ -2,11 +2,11 @@ main()
{
name = "strncmp";
test_int(strncmp("test", "test", 4), 0, "same chars");
test_int(strncmp("s", "b", 4), 17, "");
test_int(strncmp("", "", 4), 0, "empty strings");
test_int(strncmp("", "a", 0), 0, "");
test_int(strncmp("ab", "ac", 1), 0, "");
test_int(strncmp("aq", "a", 1), 0, "");
test_int(strncmp("aq", "a", 2), 113, "");
test_num(strncmp("test", "test", 4), 0, "same chars");
test_num(strncmp("s", "b", 4), 17, "");
test_num(strncmp("", "", 4), 0, "empty strings");
test_num(strncmp("", "a", 0), 0, "");
test_num(strncmp("ab", "ac", 1), 0, "");
test_num(strncmp("aq", "a", 1), 0, "");
test_num(strncmp("aq", "a", 2), 113, "");
}

21
tests/strndup.🗿 Normal file
View File

@ -0,0 +1,21 @@
main()
{
local ptr;
name = "strndup";
ptr = strndup("bozoman", 7);
test_str(ptr, "bozoman", "");
free(ptr);
ptr = strndup("bozoman", 4);
test_str(ptr, "bozo", "");
free(ptr);
ptr = strndup("bozoman", 10);
test_str(ptr, "bozoman", "");
free(ptr);
ptr = strndup("bozoman", 0);
test_str(ptr, "", "");
free(ptr);
}

10
tests/strstr.🗿 Normal file
View File

@ -0,0 +1,10 @@
main()
{
name = "strstr";
test_str(strstr("test", "t"), "test", "");
test_str(strstr("test", "st"), "st", "");
test_str(strstr("hello world!", "s"), 0, "non present to_find");
test_str(strstr("", "s"), 0, "empty str");
test_str(strstr("", ""), "", "empty str and empty to find");
}

View File

@ -22,33 +22,82 @@ test_str(value, reach_value, description)
wrt '\n';
}
test_int(value, reach_value, description)
test_num(value, reach_value, description)
{
local value_str;
local reach_value_str;
putstr(name);
if (value != reach_value)
{
value_str = itoa(value);
if (value_str == 0)
return (0);
reach_value_str = itoa(reach_value);
if (reach_value_str == 0)
{
free(value_str);
return (0);
}
putstr(": ERROR: ");
putstr(", ");
putstr(description);
putstr(" [");
putstr(reach_value_str);
putnum(reach_value);
putstr(" != ");
putstr(value_str);
putnum(value);
putstr("]");
free(value_str);
free(reach_value_str);
}
else
{
putstr(": OK: ");
putstr(description);
}
wrt '\n';
}
test_num_s(value, reach_value, description)
{
putstr(name);
if (value != reach_value)
{
putstr(": ERROR: ");
putstr(", ");
putstr(description);
putstr(" [");
putnum_s(reach_value);
putstr(" != ");
putnum_s(value);
putstr("]");
}
else
{
putstr(": OK: ");
putstr(description);
}
wrt '\n';
}
test_tab_str(value, reach_value, description)
{
putstr(name);
if (tabcmp_str(value, reach_value))
{
putstr(": ERROR: ");
putstr(", ");
putstr(description);
puttab_str(reach_value);
putstr(" != ");
puttab_str(value);
}
else
{
putstr(": OK: ");
putstr(description);
}
wrt '\n';
}
test_tab_num(value, reach_value, size, description)
{
putstr(name);
if (tabcmp_num(value, reach_value, size))
{
putstr(": ERROR: ");
putstr(", ");
putstr(description);
puttab_num(reach_value, size);
putstr(" != ");
puttab_num(value, size);
}
else
{