-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstrlib.c
63 lines (56 loc) · 778 Bytes
/
strlib.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
#include <stdio.h>
#include <stdlib.h>
/*! \file mapping.c
\brief Mapping related functions.
\author Maeva Arlandis et Alexis Devillard
\version 6.2
\date 10 janvier 2017
*/
int addStr(char *target,char *add1,char *add2)
{
int i=0;
while(*add1)
{
*target=*add1;
target++;
add1++;
i++;
}
while(*add2)
{
*target=*add2;
target++;
add2++;
i++;
}
*target='\0';
return i;
}
char *intTostr(int nb)
{
int i=10,n=1;
while(nb>i){i*=10;n++;}
char* nbch=(char*)malloc(sizeof(n+1));
nbch[n]='\0';
while(n>0)
{
nbch[n-1]='0'+ nb%10;
nb/=10;
n--;
}
return nbch;
}
int strToint(char *nbr)
{
int n=0,neg=0;
char c = '0';
if(*nbr=='-')
{neg=1;nbr++;}
while(*nbr)
{
n*=10;
n+=*nbr-c;
nbr++;
}
return (neg==0)?n:-n;
}