49a24bfc2dbd428f2d1ee3a6bf692a47c380d8f0
[staging/basesystem.git] / video_in_hal / otherservice / posix_based_os001_legacy_library / library / src / itoa.c
1 /*
2  * @copyright Copyright (c) 2016-2020 TOYOTA MOTOR CORPORATION.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 char* itoa( int value, char buff[], int radix ) {
18         static const char table[] = "0123456789abcdefghijklmnopqrstuvwxyz";
19         char *head = buff;
20         char *tail = buff;
21         char temp;
22
23         // Converting minus sign to character
24         if ( value < 0 ){
25                 *tail++ = '-';
26                 value = -value;
27         }
28         // Converting integer to character
29         if ( value == 0 ){
30                 *tail++ = '0';
31         }
32         else for ( head = tail ; value != 0 ; value /= radix ){
33                 *tail++ = table[ value % radix ];
34         }
35         *tail = '\0';
36
37         // swapping characters
38         for ( tail-- ; head < tail ; head++, tail-- ){
39                 temp = *head;
40                 *head = *tail;
41                 *tail = temp;
42         }
43         
44         return buff;
45 }