-
Notifications
You must be signed in to change notification settings - Fork 1
/
utility.c
139 lines (130 loc) · 2.21 KB
/
utility.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
#include "shell.h"
#include <stdarg.h>
/**
* linecount - count lines
* @increment: icnrementer
* Return: count
*/
int linecount(int increment)
{
static int count;
count += increment;
return (count);
}
/**
* itos - converts integer to string
* @digits: int
* Return: a string
*/
char *itos(int digits)
{
int count, i, neg, absMod, digitTest;
char *output;
digitTest = digits;
count = 0;
neg = 0;
if (digits == 0)
{
output = malloc(sizeof(char) * 2);
output[0] = '0';
output[1] = 0;
return (output);
}
if (digits < 0)
{
neg = 1;
count++;
}
while (digitTest != 0)
{
digitTest /= 10;
count++;
}
output = malloc(sizeof(char) * count + 1);
if (output == NULL)
return (NULL);
if (neg)
output[0] = '-';
digitTest = digits;
for (i = count - 1; i >= 0 + neg; i--)
{
absMod = digitTest % 10;
output[i] = (absMod < 0 ? -absMod : absMod) + '0';
digitTest /= 10;
}
output[count] = '\0';
return (output);
}
/**
* printerr - printerrors
* @str: string
* null prints errno error with perror, otherwise print string as error
* Return: 0
*/
int printerr(char *str)
{
char *pathname, *numstr;
pathname = getsvar("0");
numstr = itos(linecount(0));
if (str != NULL)
{
fprintstrs(2, pathname, ": ", numstr, str, NULL);
}
else
{
fprintstrs(2, pathname, ": ", numstr, ": ", NULL);
perror(NULL);
}
free(pathname);
free(numstr);
return (0);
}
/**
* fprintstrs - simple string printer, va args should have a NULL last arg
* @fd: file descriptor
* @str: string
* Return: 0
*/
int fprintstrs(int fd, char *str, ...)
{
va_list list;
if (str == NULL)
return (0);
va_start(list, str);
write(fd, str, _strlen(str));
str = va_arg(list, char *);
while (str != NULL)
{
write(fd, str, _strlen(str));
str = va_arg(list, char *);
}
return (0);
}
/**
* _strchr - locates a character in a string
* @s: char pointer
* @c: char
* _strchr: locates character in a string and returns a pointer
* to the first occurence of c in the string s
*
* Return: address of first occurence of c in s
*/
char *_strchr(char *s, char c)
{
int i;
int len;
i = 0;
while (s[i] != '\0')
{
len++;
i++;
}
i = 0;
while (i <= len)
{
if (s[i] == c)
return (s + i);
i++;
}
return (0);
}