Skip to content

Commit d9528ec

Browse files
committed
Task 101 of more malloc free
1 parent 6c6d21b commit d9528ec

File tree

3 files changed

+107
-0
lines changed

3 files changed

+107
-0
lines changed

0x0C-more_malloc_free/101-mul

16.6 KB
Binary file not shown.

0x0C-more_malloc_free/101-mul.c

+94
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
#include "main.h"
2+
#include <stdio.h>
3+
#include <stdlib.h>
4+
5+
/**
6+
* is_digit - checks if a striing cintains a non digits char
7+
* @s: string to be evaluated
8+
* Return: 0 or 1
9+
*/
10+
int is_digit(char *s)
11+
{
12+
int a = 0;
13+
14+
while (s[a])
15+
{
16+
if (s[a] < '0' || s[a] > '9')
17+
return (0);
18+
a++;
19+
}
20+
return (1);
21+
}
22+
23+
/**
24+
* _strlen - returns the length of a string
25+
* @s: string to evaluate
26+
* Return: the length of the string
27+
*/
28+
int _strlen(char *s)
29+
{
30+
int a = 0;
31+
32+
while (s[a] != '\0')
33+
{
34+
a++;
35+
}
36+
return (a);
37+
}
38+
39+
/**
40+
* errors - handles error for main
41+
*/
42+
void errors(void)
43+
{
44+
printf("Errors\n");
45+
exit(98);
46+
}
47+
48+
/**
49+
* main - multiplies two positive numbers
50+
* @argc: counts of args
51+
* @argv: vector of args
52+
* Return: 0
53+
*/
54+
int main(int argc, char *argv[])
55+
{
56+
char *s1, *s2;
57+
int len1, len2, len, a, carry, digit1, digit2, *result, b = 0;
58+
59+
s1 = argv[1], s2 = argv[2];
60+
if (argc != 3 || !is_digit(s1) || !is_digit(s2))
61+
errors();
62+
len1 = _strlen(s1);
63+
len2 = _strlen(s2);
64+
len = len1 + len2 + 1;
65+
result = malloc(sizeof(int) * len);
66+
if (!result)
67+
return (1);
68+
for (a = 0; a <= len1 + len2; a++)
69+
result[a] = 0;
70+
for (len1 = len1 - 1; len1 >= 0; len1--)
71+
{
72+
digit1 = s1[len1] - '0';
73+
carry = 0;
74+
for (len2 = _strlen(s2) - 1; len2 >= 0; len2--)
75+
{
76+
digit2 = s2[len2] - '0';
77+
carry += result[len1 + len2 + 1] + (digit1 * digit2);
78+
result[len1 + len2 + 1] = carry % 10;
79+
carry /= 10;
80+
}
81+
if (carry > 0)
82+
result[len1 + len2 + 1] += carry;
83+
}
84+
for (a = 0; a < len - 1; a++)
85+
{
86+
if (result[a])
87+
b = 1;
88+
if (b)
89+
_putchar('0');
90+
}
91+
_putchar('\n');
92+
free(result);
93+
return (0);
94+
}

0x0C-more_malloc_free/_putchar.c

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#include <unistd.h>
2+
3+
/**
4+
* _putchar - writes the character c to stdout
5+
* @c: The character to print
6+
*
7+
* Return: On success 1.
8+
* On error, -1 is returned, and errno is set appropriately.
9+
*/
10+
int _putchar(char c)
11+
{
12+
return (write(1, &c, 1));
13+
}

0 commit comments

Comments
 (0)