├── 0x00-hello_world ├── 0-preprocessor ├── 1-compiler ├── 100-intel ├── 101-quote.c ├── 2-assembler ├── 3-name ├── 4-puts.c ├── 5-printf.c ├── 6-size.c └── README.md ├── 0x01-variables_if_else_while ├── 0-positive_or_negative.c ├── 1-last_digit.c ├── 100-print_comb3.c ├── 101-print_comb4.c ├── 102-print_comb5.c ├── 2-print_alphabet.c ├── 3-print_alphabets.c ├── 4-print_alphabt.c ├── 5-print_numbers.c ├── 6-print_numberz.c ├── 7-print_tebahpla.c ├── 8-print_base16.c ├── 9-print_comb.c └── README.md ├── 0x02-functions_nested_loops ├── 0-putchar.c ├── 1-alphabet.c ├── 10-add.c ├── 100-times_table.c ├── 101-natural.c ├── 102-fibonacci.c ├── 103-fibonacci.c ├── 104-fibonacci.c ├── 11-print_to_98.c ├── 2-print_alphabet_x10.c ├── 3-islower.c ├── 4-isalpha.c ├── 5-sign.c ├── 6-abs.c ├── 7-print_last_digit.c ├── 8-24_hours.c ├── 9-times_table.c ├── README.md ├── _putchar.c └── main.h ├── 0x03-debugging ├── 0-main.c ├── 1-main.c ├── 2-largest_number.c ├── 3-convert_day.c ├── 3-print_remaining_days.c ├── README.md └── main.h ├── 0x04-more_functions_nested_loops ├── 0-isupper.c ├── 1-isdigit.c ├── 10-print_triangle.c ├── 100-prime_factor.c ├── 101-print_number.c ├── 2-mul.c ├── 3-print_numbers.c ├── 4-print_most_numbers.c ├── 5-more_numbers.c ├── 6-print_line.c ├── 7-print_diagonal.c ├── 8-print_square.c ├── 9-fizz_buzz.c ├── README.md ├── _putchar.c └── main.h ├── 0x05-pointers_arrays_strings ├── 0-reset_to_98.c ├── 1-swap.c ├── 100-atoi.c ├── 101-keygen.c ├── 2-strlen.c ├── 3-puts.c ├── 4-print_rev.c ├── 5-rev_string.c ├── 6-puts2.c ├── 7-puts_half.c ├── 8-print_array.c ├── 9-strcpy.c ├── README.md ├── _putchar.c └── main.h ├── 0x06-pointers_arrays_strings ├── 0-strcat.c ├── 1-strncat.c ├── 100-rot13.c ├── 101-print_number.c ├── 102-magic.c ├── 103-infinite_add.c ├── 104-print_buffer.c ├── 2-strncpy.c ├── 3-strcmp.c ├── 4-rev_array.c ├── 5-string_toupper.c ├── 6-cap_string.c ├── 7-leet.c ├── README.md ├── _putchar.c └── main.h ├── 0x07-pointers_arrays_strings ├── 0-memset.c ├── 1-memcpy.c ├── 100-set_string.c ├── 101-crackme_password ├── 2-strchr.c ├── 3-strspn.c ├── 4-strpbrk.c ├── 5-strstr.c ├── 7-print_chessboard.c ├── 8-print_diagsums.c ├── README.md ├── _putchar.c └── main.h ├── 0x08-recursion ├── 0-puts_recursion.c ├── 1-print_rev_recursion.c ├── 100-is_palindrome.c ├── 101-wildcmp.c ├── 2-strlen_recursion.c ├── 3-factorial.c ├── 4-pow_recursion.c ├── 5-sqrt_recursion.c ├── 6-is_prime_number.c ├── README.md ├── _putchar.c └── main.h ├── 0x09-static_libraries ├── 0-isupper.c ├── 0-isupper.o ├── 0-memset.c ├── 0-memset.o ├── 0-strcat.c ├── 0-strcat.o ├── 1-isdigit.c ├── 1-isdigit.o ├── 1-memcpy.c ├── 1-memcpy.o ├── 1-strncat.c ├── 1-strncat.o ├── 100-atoi.c ├── 100-atoi.o ├── 2-strchr.c ├── 2-strchr.o ├── 2-strlen.c ├── 2-strlen.o ├── 2-strncpy.c ├── 2-strncpy.o ├── 3-islower.c ├── 3-islower.o ├── 3-puts.c ├── 3-puts.o ├── 3-strcmp.c ├── 3-strcmp.o ├── 3-strspn.c ├── 3-strspn.o ├── 4-isalpha.c ├── 4-isalpha.o ├── 4-strpbrk.c ├── 4-strpbrk.o ├── 5-strstr.c ├── 5-strstr.o ├── 6-abs.c ├── 6-abs.o ├── 9-strcpy.c ├── 9-strcpy.o ├── README.md ├── _putchar.c ├── _putchar.o ├── create_static_lib.sh ├── libmy.a └── main.h ├── 0x0A-argc_argv ├── 0-whatsmyname.c ├── 1-args.c ├── 100-change.c ├── 2-args.c ├── 3-mul.c ├── 4-add.c └── README.md ├── 0x0B-malloc_free ├── 0-create_array.c ├── 1-strdup.c ├── 100-argstostr.c ├── 101-strtow.c ├── 2-str_concat.c ├── 3-alloc_grid.c ├── 4-free_grid.c ├── README.md ├── _putchar.c └── main.h ├── 0x0C-more_malloc_free ├── 0-malloc_checked.c ├── 1-string_nconcat.c ├── 100-realloc.c ├── 101-mul.c ├── 2-calloc.c ├── 3-array_range.c ├── README.md ├── _putchar.c └── main.h ├── 0x0D-preprocessor ├── 0-main.c ├── 0-object_like_macro.h ├── 1-pi.h ├── 2-main.c ├── 3-function_like_macro.h ├── 4-sum.h ├── README.md └── _putchar.c ├── 0x0E-structures_typedef ├── 0-main.c ├── 1-init_dog.c ├── 2-print_dog.c ├── 4-new_dog.c ├── 5-free_dog.c ├── README.md └── dog.h ├── 0x0F-function_pointers ├── 0-print_name.c ├── 1-array_iterator.c ├── 100-main_opcodes.c ├── 2-int_index.c ├── 3-calc.h ├── 3-get_op_func.c ├── 3-main.c ├── 3-op_functions.c ├── README.md ├── _putchar.c └── function_pointers.h ├── 0x10-variadic_functions ├── 0-sum_them_all.c ├── 1-print_numbers.c ├── 2-print_strings.c ├── 3-print_all.c ├── README.md ├── _putchar.c └── variadic_functions.h ├── 0x12-singly_linked_lists ├── 0-main.c ├── 0-print_list.c ├── 1-list_len.c ├── 1-main.c ├── 100-first.c ├── 100-main.c ├── 101-hello_holberton.asm ├── 2-add_node.c ├── 2-main.c ├── 3-add_node_end.c ├── 3-main.c ├── 4-free_list.c ├── 4-main.c ├── README.md ├── _putchar.c └── lists.h ├── 0x13-more_singly_linked_lists ├── 0-main.c ├── 0-print_listint.c ├── 1-listint_len.c ├── 1-main.c ├── 10-delete_nodeint.c ├── 10-main.c ├── 100-main.c ├── 100-reverse_listint.c ├── 101-main.c ├── 101-print_listint_safe.c ├── 102-free_listint_safe.c ├── 102-main.c ├── 103-find_loop.c ├── 103-main.c ├── 2-add_nodeint.c ├── 2-main.c ├── 3-add_nodeint_end.c ├── 3-main.c ├── 4-free_listint.c ├── 4-main.c ├── 5-free_listint2.c ├── 5-main.c ├── 6-main.c ├── 6-pop_listint.c ├── 7-get_nodeint.c ├── 7-main.c ├── 8-main.c ├── 8-sum_listint.c ├── 9-insert_nodeint.c ├── 9-main.c ├── README.md ├── _putchar.c └── lists.h └── README.md /0x00-hello_world/0-preprocessor: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | gcc -E $CFILE >> c 3 | -------------------------------------------------------------------------------- /0x00-hello_world/1-compiler: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | gcc -c $CFILE 3 | -------------------------------------------------------------------------------- /0x00-hello_world/100-intel: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | gcc -S -masm=intel $CFILE 3 | -------------------------------------------------------------------------------- /0x00-hello_world/101-quote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x00-hello_world/101-quote.c -------------------------------------------------------------------------------- /0x00-hello_world/2-assembler: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | gcc -S $CFILE 3 | -------------------------------------------------------------------------------- /0x00-hello_world/3-name: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | gcc -o cisfun $CFILE 3 | -------------------------------------------------------------------------------- /0x00-hello_world/4-puts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x00-hello_world/4-puts.c -------------------------------------------------------------------------------- /0x00-hello_world/5-printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x00-hello_world/5-printf.c -------------------------------------------------------------------------------- /0x00-hello_world/6-size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x00-hello_world/6-size.c -------------------------------------------------------------------------------- /0x00-hello_world/README.md: -------------------------------------------------------------------------------- 1 | # Hello world in C programming 2 | -------------------------------------------------------------------------------- /0x01-variables_if_else_while/0-positive_or_negative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x01-variables_if_else_while/0-positive_or_negative.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/1-last_digit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x01-variables_if_else_while/1-last_digit.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/100-print_comb3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x01-variables_if_else_while/100-print_comb3.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/101-print_comb4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x01-variables_if_else_while/101-print_comb4.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/102-print_comb5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x01-variables_if_else_while/102-print_comb5.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/2-print_alphabet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x01-variables_if_else_while/2-print_alphabet.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/3-print_alphabets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x01-variables_if_else_while/3-print_alphabets.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/4-print_alphabt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x01-variables_if_else_while/4-print_alphabt.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/5-print_numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x01-variables_if_else_while/5-print_numbers.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/6-print_numberz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x01-variables_if_else_while/6-print_numberz.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/7-print_tebahpla.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x01-variables_if_else_while/7-print_tebahpla.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/8-print_base16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x01-variables_if_else_while/8-print_base16.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/9-print_comb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x01-variables_if_else_while/9-print_comb.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/README.md: -------------------------------------------------------------------------------- 1 | # 0x01-variables_if_else_while 2 | -------------------------------------------------------------------------------- /0x02-functions_nested_loops/0-putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x02-functions_nested_loops/0-putchar.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/1-alphabet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x02-functions_nested_loops/1-alphabet.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/10-add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x02-functions_nested_loops/10-add.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/100-times_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x02-functions_nested_loops/100-times_table.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/101-natural.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x02-functions_nested_loops/101-natural.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/102-fibonacci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x02-functions_nested_loops/102-fibonacci.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/103-fibonacci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x02-functions_nested_loops/103-fibonacci.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/104-fibonacci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x02-functions_nested_loops/104-fibonacci.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/11-print_to_98.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x02-functions_nested_loops/11-print_to_98.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/2-print_alphabet_x10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x02-functions_nested_loops/2-print_alphabet_x10.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/3-islower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x02-functions_nested_loops/3-islower.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/4-isalpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x02-functions_nested_loops/4-isalpha.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/5-sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x02-functions_nested_loops/5-sign.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/6-abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x02-functions_nested_loops/6-abs.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/7-print_last_digit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x02-functions_nested_loops/7-print_last_digit.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/8-24_hours.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x02-functions_nested_loops/8-24_hours.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/9-times_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x02-functions_nested_loops/9-times_table.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x02-functions_nested_loops/README.md -------------------------------------------------------------------------------- /0x02-functions_nested_loops/_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x02-functions_nested_loops/_putchar.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x02-functions_nested_loops/main.h -------------------------------------------------------------------------------- /0x03-debugging/0-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x03-debugging/0-main.c -------------------------------------------------------------------------------- /0x03-debugging/1-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x03-debugging/1-main.c -------------------------------------------------------------------------------- /0x03-debugging/2-largest_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x03-debugging/2-largest_number.c -------------------------------------------------------------------------------- /0x03-debugging/3-convert_day.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x03-debugging/3-convert_day.c -------------------------------------------------------------------------------- /0x03-debugging/3-print_remaining_days.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x03-debugging/3-print_remaining_days.c -------------------------------------------------------------------------------- /0x03-debugging/README.md: -------------------------------------------------------------------------------- 1 | # Debugging 2 | -------------------------------------------------------------------------------- /0x03-debugging/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x03-debugging/main.h -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/0-isupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/0-isupper.c -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/1-isdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/1-isdigit.c -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/10-print_triangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/10-print_triangle.c -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/100-prime_factor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/100-prime_factor.c -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/101-print_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/101-print_number.c -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/2-mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/2-mul.c -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/3-print_numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/3-print_numbers.c -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/4-print_most_numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/4-print_most_numbers.c -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/5-more_numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/5-more_numbers.c -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/6-print_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/6-print_line.c -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/7-print_diagonal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/7-print_diagonal.c -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/8-print_square.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/8-print_square.c -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/9-fizz_buzz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/9-fizz_buzz.c -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/README.md -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/_putchar.c -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/main.h -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/0-reset_to_98.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/0-reset_to_98.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/1-swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/1-swap.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/100-atoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/100-atoi.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/101-keygen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/101-keygen.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/2-strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/2-strlen.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/3-puts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/3-puts.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/4-print_rev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/4-print_rev.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/5-rev_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/5-rev_string.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/6-puts2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/6-puts2.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/7-puts_half.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/7-puts_half.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/8-print_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/8-print_array.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/9-strcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/9-strcpy.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/README.md: -------------------------------------------------------------------------------- 1 | # Pointers and Arrays Strings 2 | -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/_putchar.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/main.h -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/0-strcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/0-strcat.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/1-strncat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/1-strncat.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/100-rot13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/100-rot13.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/101-print_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/101-print_number.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/102-magic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/102-magic.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/103-infinite_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/103-infinite_add.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/104-print_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/104-print_buffer.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/2-strncpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/2-strncpy.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/3-strcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/3-strcmp.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/4-rev_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/4-rev_array.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/5-string_toupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/5-string_toupper.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/6-cap_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/6-cap_string.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/7-leet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/7-leet.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/README.md: -------------------------------------------------------------------------------- 1 | # More Pointers Arrays and Strings 2 | -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/_putchar.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/main.h -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/0-memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/0-memset.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/1-memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/1-memcpy.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/100-set_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/100-set_string.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/101-crackme_password: -------------------------------------------------------------------------------- 1 | abc123 -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/2-strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/2-strchr.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/3-strspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/3-strspn.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/4-strpbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/4-strpbrk.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/5-strstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/5-strstr.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/7-print_chessboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/7-print_chessboard.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/8-print_diagsums.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/8-print_diagsums.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/README.md: -------------------------------------------------------------------------------- 1 | # Even More Ponters, Arrays, and Strings 2 | -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/_putchar.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/main.h -------------------------------------------------------------------------------- /0x08-recursion/0-puts_recursion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x08-recursion/0-puts_recursion.c -------------------------------------------------------------------------------- /0x08-recursion/1-print_rev_recursion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x08-recursion/1-print_rev_recursion.c -------------------------------------------------------------------------------- /0x08-recursion/100-is_palindrome.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x08-recursion/100-is_palindrome.c -------------------------------------------------------------------------------- /0x08-recursion/101-wildcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x08-recursion/101-wildcmp.c -------------------------------------------------------------------------------- /0x08-recursion/2-strlen_recursion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x08-recursion/2-strlen_recursion.c -------------------------------------------------------------------------------- /0x08-recursion/3-factorial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x08-recursion/3-factorial.c -------------------------------------------------------------------------------- /0x08-recursion/4-pow_recursion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x08-recursion/4-pow_recursion.c -------------------------------------------------------------------------------- /0x08-recursion/5-sqrt_recursion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x08-recursion/5-sqrt_recursion.c -------------------------------------------------------------------------------- /0x08-recursion/6-is_prime_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x08-recursion/6-is_prime_number.c -------------------------------------------------------------------------------- /0x08-recursion/README.md: -------------------------------------------------------------------------------- 1 | # Recursion 2 | -------------------------------------------------------------------------------- /0x08-recursion/_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x08-recursion/_putchar.c -------------------------------------------------------------------------------- /0x08-recursion/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x08-recursion/main.h -------------------------------------------------------------------------------- /0x09-static_libraries/0-isupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/0-isupper.c -------------------------------------------------------------------------------- /0x09-static_libraries/0-isupper.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/0-isupper.o -------------------------------------------------------------------------------- /0x09-static_libraries/0-memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/0-memset.c -------------------------------------------------------------------------------- /0x09-static_libraries/0-memset.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/0-memset.o -------------------------------------------------------------------------------- /0x09-static_libraries/0-strcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/0-strcat.c -------------------------------------------------------------------------------- /0x09-static_libraries/0-strcat.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/0-strcat.o -------------------------------------------------------------------------------- /0x09-static_libraries/1-isdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/1-isdigit.c -------------------------------------------------------------------------------- /0x09-static_libraries/1-isdigit.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/1-isdigit.o -------------------------------------------------------------------------------- /0x09-static_libraries/1-memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/1-memcpy.c -------------------------------------------------------------------------------- /0x09-static_libraries/1-memcpy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/1-memcpy.o -------------------------------------------------------------------------------- /0x09-static_libraries/1-strncat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/1-strncat.c -------------------------------------------------------------------------------- /0x09-static_libraries/1-strncat.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/1-strncat.o -------------------------------------------------------------------------------- /0x09-static_libraries/100-atoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/100-atoi.c -------------------------------------------------------------------------------- /0x09-static_libraries/100-atoi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/100-atoi.o -------------------------------------------------------------------------------- /0x09-static_libraries/2-strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/2-strchr.c -------------------------------------------------------------------------------- /0x09-static_libraries/2-strchr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/2-strchr.o -------------------------------------------------------------------------------- /0x09-static_libraries/2-strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/2-strlen.c -------------------------------------------------------------------------------- /0x09-static_libraries/2-strlen.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/2-strlen.o -------------------------------------------------------------------------------- /0x09-static_libraries/2-strncpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/2-strncpy.c -------------------------------------------------------------------------------- /0x09-static_libraries/2-strncpy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/2-strncpy.o -------------------------------------------------------------------------------- /0x09-static_libraries/3-islower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/3-islower.c -------------------------------------------------------------------------------- /0x09-static_libraries/3-islower.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/3-islower.o -------------------------------------------------------------------------------- /0x09-static_libraries/3-puts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/3-puts.c -------------------------------------------------------------------------------- /0x09-static_libraries/3-puts.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/3-puts.o -------------------------------------------------------------------------------- /0x09-static_libraries/3-strcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/3-strcmp.c -------------------------------------------------------------------------------- /0x09-static_libraries/3-strcmp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/3-strcmp.o -------------------------------------------------------------------------------- /0x09-static_libraries/3-strspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/3-strspn.c -------------------------------------------------------------------------------- /0x09-static_libraries/3-strspn.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/3-strspn.o -------------------------------------------------------------------------------- /0x09-static_libraries/4-isalpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/4-isalpha.c -------------------------------------------------------------------------------- /0x09-static_libraries/4-isalpha.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/4-isalpha.o -------------------------------------------------------------------------------- /0x09-static_libraries/4-strpbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/4-strpbrk.c -------------------------------------------------------------------------------- /0x09-static_libraries/4-strpbrk.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/4-strpbrk.o -------------------------------------------------------------------------------- /0x09-static_libraries/5-strstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/5-strstr.c -------------------------------------------------------------------------------- /0x09-static_libraries/5-strstr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/5-strstr.o -------------------------------------------------------------------------------- /0x09-static_libraries/6-abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/6-abs.c -------------------------------------------------------------------------------- /0x09-static_libraries/6-abs.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/6-abs.o -------------------------------------------------------------------------------- /0x09-static_libraries/9-strcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/9-strcpy.c -------------------------------------------------------------------------------- /0x09-static_libraries/9-strcpy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/9-strcpy.o -------------------------------------------------------------------------------- /0x09-static_libraries/README.md: -------------------------------------------------------------------------------- 1 | # Static Libraries 2 | -------------------------------------------------------------------------------- /0x09-static_libraries/_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/_putchar.c -------------------------------------------------------------------------------- /0x09-static_libraries/_putchar.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/_putchar.o -------------------------------------------------------------------------------- /0x09-static_libraries/create_static_lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/create_static_lib.sh -------------------------------------------------------------------------------- /0x09-static_libraries/libmy.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/libmy.a -------------------------------------------------------------------------------- /0x09-static_libraries/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x09-static_libraries/main.h -------------------------------------------------------------------------------- /0x0A-argc_argv/0-whatsmyname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0A-argc_argv/0-whatsmyname.c -------------------------------------------------------------------------------- /0x0A-argc_argv/1-args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0A-argc_argv/1-args.c -------------------------------------------------------------------------------- /0x0A-argc_argv/100-change.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0A-argc_argv/100-change.c -------------------------------------------------------------------------------- /0x0A-argc_argv/2-args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0A-argc_argv/2-args.c -------------------------------------------------------------------------------- /0x0A-argc_argv/3-mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0A-argc_argv/3-mul.c -------------------------------------------------------------------------------- /0x0A-argc_argv/4-add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0A-argc_argv/4-add.c -------------------------------------------------------------------------------- /0x0A-argc_argv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0A-argc_argv/README.md -------------------------------------------------------------------------------- /0x0B-malloc_free/0-create_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0B-malloc_free/0-create_array.c -------------------------------------------------------------------------------- /0x0B-malloc_free/1-strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0B-malloc_free/1-strdup.c -------------------------------------------------------------------------------- /0x0B-malloc_free/100-argstostr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0B-malloc_free/100-argstostr.c -------------------------------------------------------------------------------- /0x0B-malloc_free/101-strtow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0B-malloc_free/101-strtow.c -------------------------------------------------------------------------------- /0x0B-malloc_free/2-str_concat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0B-malloc_free/2-str_concat.c -------------------------------------------------------------------------------- /0x0B-malloc_free/3-alloc_grid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0B-malloc_free/3-alloc_grid.c -------------------------------------------------------------------------------- /0x0B-malloc_free/4-free_grid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0B-malloc_free/4-free_grid.c -------------------------------------------------------------------------------- /0x0B-malloc_free/README.md: -------------------------------------------------------------------------------- 1 | # Malloc Free 2 | -------------------------------------------------------------------------------- /0x0B-malloc_free/_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0B-malloc_free/_putchar.c -------------------------------------------------------------------------------- /0x0B-malloc_free/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0B-malloc_free/main.h -------------------------------------------------------------------------------- /0x0C-more_malloc_free/0-malloc_checked.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0C-more_malloc_free/0-malloc_checked.c -------------------------------------------------------------------------------- /0x0C-more_malloc_free/1-string_nconcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0C-more_malloc_free/1-string_nconcat.c -------------------------------------------------------------------------------- /0x0C-more_malloc_free/100-realloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0C-more_malloc_free/100-realloc.c -------------------------------------------------------------------------------- /0x0C-more_malloc_free/101-mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0C-more_malloc_free/101-mul.c -------------------------------------------------------------------------------- /0x0C-more_malloc_free/2-calloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0C-more_malloc_free/2-calloc.c -------------------------------------------------------------------------------- /0x0C-more_malloc_free/3-array_range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0C-more_malloc_free/3-array_range.c -------------------------------------------------------------------------------- /0x0C-more_malloc_free/README.md: -------------------------------------------------------------------------------- 1 | # More Malloc Free 2 | -------------------------------------------------------------------------------- /0x0C-more_malloc_free/_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0C-more_malloc_free/_putchar.c -------------------------------------------------------------------------------- /0x0C-more_malloc_free/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0C-more_malloc_free/main.h -------------------------------------------------------------------------------- /0x0D-preprocessor/0-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0D-preprocessor/0-main.c -------------------------------------------------------------------------------- /0x0D-preprocessor/0-object_like_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0D-preprocessor/0-object_like_macro.h -------------------------------------------------------------------------------- /0x0D-preprocessor/1-pi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0D-preprocessor/1-pi.h -------------------------------------------------------------------------------- /0x0D-preprocessor/2-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0D-preprocessor/2-main.c -------------------------------------------------------------------------------- /0x0D-preprocessor/3-function_like_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0D-preprocessor/3-function_like_macro.h -------------------------------------------------------------------------------- /0x0D-preprocessor/4-sum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0D-preprocessor/4-sum.h -------------------------------------------------------------------------------- /0x0D-preprocessor/README.md: -------------------------------------------------------------------------------- 1 | # Preprocessor 2 | -------------------------------------------------------------------------------- /0x0D-preprocessor/_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0D-preprocessor/_putchar.c -------------------------------------------------------------------------------- /0x0E-structures_typedef/0-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0E-structures_typedef/0-main.c -------------------------------------------------------------------------------- /0x0E-structures_typedef/1-init_dog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0E-structures_typedef/1-init_dog.c -------------------------------------------------------------------------------- /0x0E-structures_typedef/2-print_dog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0E-structures_typedef/2-print_dog.c -------------------------------------------------------------------------------- /0x0E-structures_typedef/4-new_dog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0E-structures_typedef/4-new_dog.c -------------------------------------------------------------------------------- /0x0E-structures_typedef/5-free_dog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0E-structures_typedef/5-free_dog.c -------------------------------------------------------------------------------- /0x0E-structures_typedef/README.md: -------------------------------------------------------------------------------- 1 | # Structures typedef 2 | -------------------------------------------------------------------------------- /0x0E-structures_typedef/dog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0E-structures_typedef/dog.h -------------------------------------------------------------------------------- /0x0F-function_pointers/0-print_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0F-function_pointers/0-print_name.c -------------------------------------------------------------------------------- /0x0F-function_pointers/1-array_iterator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0F-function_pointers/1-array_iterator.c -------------------------------------------------------------------------------- /0x0F-function_pointers/100-main_opcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0F-function_pointers/100-main_opcodes.c -------------------------------------------------------------------------------- /0x0F-function_pointers/2-int_index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0F-function_pointers/2-int_index.c -------------------------------------------------------------------------------- /0x0F-function_pointers/3-calc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0F-function_pointers/3-calc.h -------------------------------------------------------------------------------- /0x0F-function_pointers/3-get_op_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0F-function_pointers/3-get_op_func.c -------------------------------------------------------------------------------- /0x0F-function_pointers/3-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0F-function_pointers/3-main.c -------------------------------------------------------------------------------- /0x0F-function_pointers/3-op_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0F-function_pointers/3-op_functions.c -------------------------------------------------------------------------------- /0x0F-function_pointers/README.md: -------------------------------------------------------------------------------- 1 | # Fonction Pointers 2 | -------------------------------------------------------------------------------- /0x0F-function_pointers/_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0F-function_pointers/_putchar.c -------------------------------------------------------------------------------- /0x0F-function_pointers/function_pointers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x0F-function_pointers/function_pointers.h -------------------------------------------------------------------------------- /0x10-variadic_functions/0-sum_them_all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x10-variadic_functions/0-sum_them_all.c -------------------------------------------------------------------------------- /0x10-variadic_functions/1-print_numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x10-variadic_functions/1-print_numbers.c -------------------------------------------------------------------------------- /0x10-variadic_functions/2-print_strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x10-variadic_functions/2-print_strings.c -------------------------------------------------------------------------------- /0x10-variadic_functions/3-print_all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x10-variadic_functions/3-print_all.c -------------------------------------------------------------------------------- /0x10-variadic_functions/README.md: -------------------------------------------------------------------------------- 1 | # Variadic Functions 2 | -------------------------------------------------------------------------------- /0x10-variadic_functions/_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x10-variadic_functions/_putchar.c -------------------------------------------------------------------------------- /0x10-variadic_functions/variadic_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x10-variadic_functions/variadic_functions.h -------------------------------------------------------------------------------- /0x12-singly_linked_lists/0-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x12-singly_linked_lists/0-main.c -------------------------------------------------------------------------------- /0x12-singly_linked_lists/0-print_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x12-singly_linked_lists/0-print_list.c -------------------------------------------------------------------------------- /0x12-singly_linked_lists/1-list_len.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x12-singly_linked_lists/1-list_len.c -------------------------------------------------------------------------------- /0x12-singly_linked_lists/1-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x12-singly_linked_lists/1-main.c -------------------------------------------------------------------------------- /0x12-singly_linked_lists/100-first.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x12-singly_linked_lists/100-first.c -------------------------------------------------------------------------------- /0x12-singly_linked_lists/100-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x12-singly_linked_lists/100-main.c -------------------------------------------------------------------------------- /0x12-singly_linked_lists/101-hello_holberton.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x12-singly_linked_lists/101-hello_holberton.asm -------------------------------------------------------------------------------- /0x12-singly_linked_lists/2-add_node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x12-singly_linked_lists/2-add_node.c -------------------------------------------------------------------------------- /0x12-singly_linked_lists/2-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x12-singly_linked_lists/2-main.c -------------------------------------------------------------------------------- /0x12-singly_linked_lists/3-add_node_end.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x12-singly_linked_lists/3-add_node_end.c -------------------------------------------------------------------------------- /0x12-singly_linked_lists/3-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x12-singly_linked_lists/3-main.c -------------------------------------------------------------------------------- /0x12-singly_linked_lists/4-free_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x12-singly_linked_lists/4-free_list.c -------------------------------------------------------------------------------- /0x12-singly_linked_lists/4-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x12-singly_linked_lists/4-main.c -------------------------------------------------------------------------------- /0x12-singly_linked_lists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x12-singly_linked_lists/README.md -------------------------------------------------------------------------------- /0x12-singly_linked_lists/_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x12-singly_linked_lists/_putchar.c -------------------------------------------------------------------------------- /0x12-singly_linked_lists/lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x12-singly_linked_lists/lists.h -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/0-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/0-main.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/0-print_listint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/0-print_listint.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/1-listint_len.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/1-listint_len.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/1-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/1-main.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/10-delete_nodeint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/10-delete_nodeint.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/10-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/10-main.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/100-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/100-main.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/100-reverse_listint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/100-reverse_listint.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/101-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/101-main.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/101-print_listint_safe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/101-print_listint_safe.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/102-free_listint_safe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/102-free_listint_safe.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/102-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/102-main.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/103-find_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/103-find_loop.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/103-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/103-main.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/2-add_nodeint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/2-add_nodeint.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/2-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/2-main.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/3-add_nodeint_end.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/3-add_nodeint_end.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/3-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/3-main.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/4-free_listint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/4-free_listint.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/4-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/4-main.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/5-free_listint2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/5-free_listint2.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/5-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/5-main.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/6-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/6-main.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/6-pop_listint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/6-pop_listint.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/7-get_nodeint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/7-get_nodeint.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/7-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/7-main.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/8-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/8-main.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/8-sum_listint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/8-sum_listint.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/9-insert_nodeint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/9-insert_nodeint.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/9-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/9-main.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/README.md -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/_putchar.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elpacificmb/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/lists.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Alx Low Level Programming 2 | --------------------------------------------------------------------------------