Skip to content

Commit b0c451d

Browse files
author
Antonin GAVREL
committed
[ADD] ft_rand and [OPTI?] ft_isupper
1 parent 7b64eca commit b0c451d

File tree

6 files changed

+56
-27
lines changed

6 files changed

+56
-27
lines changed

Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# By: angavrel <[email protected]> +#+ +:+ +#+ #
77
# +#+#+#+#+#+ +#+ #
88
# Created: 2017/07/29 21:40:42 by angavrel #+# #+# #
9-
# Updated: 2018/01/13 13:28:24 by angavrel ### ########.fr #
9+
# Updated: 2018/01/13 17:19:34 by angavrel ### ########.fr #
1010
# #
1111
# **************************************************************************** #
1212

@@ -28,6 +28,7 @@ ASM_FILES = ft_isascii \
2828
ft_strdup \
2929
ft_abs \
3030
ft_memset \
31+
ft_rand \
3132
table_type
3233

3334

Usage

100644100755
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
make && gcc libfts.a maintest.c && clear && ./a.out
1+
make test && ./maintest.out

libfts.h

+1
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,6 @@ char *ft_strdup(const char *s);
2121
int ft_abs(int x);
2222
void *ft_memset(void *s, int c, size_t n);
2323
void ft_bzero(void *s, size_t n);
24+
int ft_rand(void);
2425

2526
#endif

srcs/ft_isupper.s

+3-4
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,10 @@ section .text
66

77
_ft_isupper: ; int ft_isupper
88
call _ft_isalpha
9-
test eax, eax
10-
jz .end
9+
cmovz eax, eax ; {test eax, eax + mov eax 0}: if ft_isalpha returns 0 move 0 to eax
1110
and edi, 0x20 ; checks if 6th bit if ON
12-
jnz .end ; if set, jumps to .end
13-
mov eax, 1
11+
cmovnz eax, eax
12+
jnz .end ; if not set, jumps to .end
1413
ret
1514

1615
.end:

srcs/ft_rand.s

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
global _ft_rand
2+
3+
section .text
4+
5+
_ft_rand: ; int ft_rand(void) : returns integer between 0 and 99
6+
rdrand eax
7+
mov ebx, 100
8+
mov edx, 0
9+
div ebx
10+
mov eax, edx
11+
ret

test/maintest.c

+38-21
Original file line numberDiff line numberDiff line change
@@ -28,27 +28,6 @@ while (++tmp < 255)
2828
dprintf(1, "\t\x1b[31mKO\x1b[0m\n");
2929
}
3030

31-
/*
32-
**************************** is_isupper ****************************************
33-
*/
34-
35-
dprintf(1, "\n\x1b[32mft_isupper:\x1b[0m\n");
36-
dprintf(1, "\t%c -> %d\n", '!', ft_isupper('!'));
37-
dprintf(1, "\t%c -> %d\n", '@', ft_isupper('@'));
38-
dprintf(1, "\t%c -> %d\n", 'A', ft_isupper('A'));
39-
dprintf(1, "\t%c -> %d\n", 'F', ft_isupper('F'));
40-
dprintf(1, "\t%c -> %d\n", 'K', ft_isupper('K'));
41-
dprintf(1, "\t%c -> %d\n", 'T', ft_isupper('T'));
42-
dprintf(1, "\t%c -> %d\n", 'Z', ft_isupper('Z'));
43-
dprintf(1, "\t%c -> %d\n", '[', ft_isupper('['));
44-
dprintf(1, "\t%c -> %d\n", '`', ft_isupper('`'));
45-
dprintf(1, "\t%c -> %d\n", 'a', ft_isupper('a'));
46-
dprintf(1, "\t%c -> %d\n", 'f', ft_isupper('f'));
47-
dprintf(1, "\t%c -> %d\n", 'k', ft_isupper('k'));
48-
dprintf(1, "\t%c -> %d\n", 't', ft_isupper('t'));
49-
dprintf(1, "\t%c -> %d\n", 'z', ft_isupper('z'));
50-
dprintf(1, "\t%c -> %d\n", '{', ft_isupper('{'));
51-
dprintf(1, "\t%c -> %d\n", '~', ft_isupper('~'));
5231

5332
/*
5433
**************************** is_islower ****************************************
@@ -273,5 +252,43 @@ dprintf(1, "\n\x1b[32mft_strdup:\x1b[0m\n");
273252
str2 = ft_strdup(str);
274253
dprintf(1, "\t'%s' <- str2 = ft_strdup(str)\n", str2);
275254

255+
256+
/*
257+
**************************** is_isupper ****************************************
258+
*/
259+
260+
dprintf(1, "\n\x1b[32mft_isupper:\x1b[0m\n");
261+
262+
tmp = 31;
263+
while (++tmp < 127)
264+
{
265+
dprintf(1, "\t%c -> %d", tmp, check = ft_isupper(tmp));
266+
if ((check && (64 < tmp && tmp < 91)) || (!check && (65 > tmp || tmp > 90)))
267+
dprintf(1, "\t\x1b[32mOK\x1b[0m\n");
268+
else
269+
dprintf(1, "\t\x1b[31mKO\x1b[0m\n");
270+
}
271+
272+
/*
273+
**************************** ft_rand *******************************************
274+
*/
275+
/*
276+
int rng[100];
277+
ft_bzero(rng, 100);
278+
tmp = -1;
279+
int b;
280+
while (++tmp < 50)
281+
{
282+
b = ft_rand();
283+
rng[b] += 1;
284+
}
285+
tmp = -1;
286+
while (++tmp < 100)
287+
{
288+
dprintf(1, "\tft_rand() value: %d count: %d\n", tmp, rng[tmp]);
289+
}
290+
*/
291+
// dprintf(1, "\tft_rand() -> %d", ft_rand());
292+
276293
return (0);
277294
}

0 commit comments

Comments
 (0)