Skip to content

Commit b8b8382

Browse files
committed
Update README.md
1 parent 9b6afe7 commit b8b8382

File tree

1 file changed

+19
-10
lines changed

1 file changed

+19
-10
lines changed

0x07-pointers_arrays_strings/README.md

+19-10
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,23 @@
88

99
## Files & Descriptions
1010

11-
0-memset.c</br>
12-
1-memcpy.c</br>
13-
2-strchr.c</br>
14-
3-strspn.c</br>
15-
4-strpbrk.c</br>
16-
5-strstr.c</br>
17-
7-print_chessboard.c</br>
18-
8-print_diagsums.c</br>
19-
9-set_string.c</br>
20-
101-crackme_password
11+
[0-memset.c](https://github.com/Jenni-Foued/holbertonschool-low_level_programming/tree/master/0x07-pointers_arrays_strings/0-memset.c) a function that fills memory with a constant byte</br>
12+
13+
[1-memcpy.c](https://github.com/Jenni-Foued/holbertonschool-low_level_programming/tree/master/0x07-pointers_arrays_strings/1-memcpy.c) a function that copies memory area</br>
14+
15+
[2-strchr.c](https://github.com/Jenni-Foued/holbertonschool-low_level_programming/tree/master/0x07-pointers_arrays_strings/2-strchr.c) a function that locates a character in a string</br>
16+
17+
[3-strspn.c](https://github.com/Jenni-Foued/holbertonschool-low_level_programming/tree/master/0x07-pointers_arrays_strings/3-strspn.c) a function that gets the length of a prefix substring</br>
18+
19+
[4-strpbrk.c](https://github.com/Jenni-Foued/holbertonschool-low_level_programming/tree/master/0x07-pointers_arrays_strings/4-strpbrk.c) a function that searches a string for any of a set of bytes</br>
20+
21+
[5-strstr.c](https://github.com/Jenni-Foued/holbertonschool-low_level_programming/tree/master/0x07-pointers_arrays_strings/5-strstr.c) a function that locates a substring</br>
22+
23+
[7-print_chessboard.c](https://github.com/Jenni-Foued/holbertonschool-low_level_programming/tree/master/0x07-pointers_arrays_strings/7-print_chessboard.c) a function that prints the chessboard</br>
24+
25+
[8-print_diagsums.c](https://github.com/Jenni-Foued/holbertonschool-low_level_programming/tree/master/0x07-pointers_arrays_strings/8-print_diagsums.c) a function that prints the sum of the two diagonals of a square matrix of integers</br>
26+
27+
[9-set_string.c](https://github.com/Jenni-Foued/holbertonschool-low_level_programming/tree/master/0x07-pointers_arrays_strings/9-set_string.c) a function that sets the value of a pointer to a char</br>
28+
29+
[101-crackme_password](https://github.com/Jenni-Foued/holbertonschool-low_level_programming/tree/master/0x07-pointers_arrays_strings/101-crackme_password) a file that contains the password for the [crackme2](https://github.com/holbertonschool/0x06.c/blob/master/crackme2) executable
2130

0 commit comments

Comments
 (0)