-
Notifications
You must be signed in to change notification settings - Fork 0
/
cv_u.c
86 lines (73 loc) · 1.5 KB
/
cv_u.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
#include "main.h"
/**
* is_print - checks the characted to be printed
* @a: inputed character.
*
* Return: 1 if c is printable, 0 otherwise
*/
int is_print(char a)
{
if (a >= 32 && a < 127)
return (1);
return (0);
}
/**
* append_hexa_code - Append ascii to buffer
* @buffer: Array of chars.
* @x: Index at which to start appending.
* @ascii: ASCII CODE.
* Return: Always 3
*/
int append_hexa_code(char ascii, char buffer[], int x)
{
char map[] = "0123456789ABCDEF";
if (ascii < 0)
ascii *= -1;
buffer[x++] = '\\';
buffer[x++] = 'x';
buffer[x++] = map[ascii / 16];
buffer[x] = map[ascii % 16];
return (3);
}
/**
* is_dig - checks digit as a character
* @a: inputed character
*
* Return: 1 if c is a digit, 0 otherwise
*/
int is_dig(char a)
{
if (a >= '0' && a <= '9')
return (1);
return (0);
}
/**
* conv_size_num - the specified size of a number is casted
* @num: inputed number
* @size: Number indicating the type to be casted.
*
* Return: num's casted value
*/
long int conv_size_num(long int num, int size)
{
if (size == S_LONG)
return (num);
else if (size == S_SHORT)
return ((short)num);
return ((int)num);
}
/**
* conv_size_unsgnd - Casts a number to the specified size
* @num: Number to be casted
* @size: Number indicating the type to be casted
*
* Return: Casted value of num
*/
long int conv_size_unsgnd(unsigned long int num, int size)
{
if (size == S_LONG)
return (num);
else if (size == S_SHORT)
return ((unsigned short)num);
return ((unsigned int)num);
}