File tree 1 file changed +13
-16
lines changed
1 file changed +13
-16
lines changed Original file line number Diff line number Diff line change @@ -19,30 +19,27 @@ int poww(int b, int e){
19
19
20
20
int escape_to_decimal (char * escape ) {
21
21
// get octal value without '' and without '\'
22
- char string_octal [3 ];
22
+ char string_octal [4 ];
23
23
int index = 0 ;
24
24
for (int i = 2 ; i < strlen (escape ) - 1 ; i ++ ) {
25
25
string_octal [index ] = escape [i ];
26
26
index ++ ;
27
27
}
28
- char * pEnd = NULL ;
29
28
30
- long octal = strtol (string_octal , & pEnd , 8 );
31
- return octal ;
32
- /* int octal = atoi(string_octal);
29
+ long octal = atoi (string_octal );
33
30
31
+ // convert octal to decimal
32
+ int decimal = 0 ;
33
+ int i = 0 ;
34
+ int rem ;
35
+ while (octal != 0 ){
36
+ rem = octal % 10 ;
37
+ octal /= 10 ;
38
+ decimal += rem * poww (8 , i );
39
+ ++ i ;
40
+ }
34
41
35
- // convert octal to decimal
36
- int decimal = 0;
37
- int i = 0;
38
- int rem;
39
- while (octal != 0){
40
- rem = octal % 10;
41
- octal /= 10;
42
- decimal += rem * poww(8, i);
43
- ++i;
44
- }
45
- return decimal; */
42
+ return decimal ;
46
43
}
47
44
48
45
int escape_to_number (char * escape ) {
You can’t perform that action at this time.
0 commit comments