-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstr.h
54 lines (50 loc) · 1.13 KB
/
str.h
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
/* STR.H
C alternate standard library
String handling
*/
#if !defined(_STRING_H)
#define _STRING_H 1
size_t strlen(const char* str)
{
size_t len = 0;
while (str[len]) len++;
return len;
}
/* Modified from wiki.osdev.org/Printing_To_Screen */
char* itoa(int value,int base)
{
static char str[255];
char *rc, *ptr, *low;
// Check for supported base.
if ( base < 2 || base > 36 )
{
*str = '\0';
return str;
}
rc = ptr = str;
// Set '-' for negative decimals.
if ( value < 0 && base == 10 )
{
*ptr++ = '-';
}
// Remember where the numbers start.
low = ptr;
// The actual conversion.
do
{
// Modulo is negative for negative value. This trick makes abs() unnecessary.
*ptr++ = "zyxwvutsrqponmlkjihgfedcba9876543210123456789abcdefghijklmnopqrstuvwxyz"[35 + value % base];
value /= base;
} while ( value );
// Terminating the string.
*ptr-- = '\0';
// Invert the numbers.
while ( low < ptr )
{
char tmp = *low;
*low++ = *ptr;
*ptr-- = tmp;
}
return rc;
}
#endif // _STRING_H