mirror of
https://github.moeyy.xyz/https://github.com/TheAlgorithms/C.git
synced 2023-10-11 15:56:24 +08:00
more docs
This commit is contained in:
parent
98f9ae391f
commit
0f95bd92f9
@ -1,4 +1,3 @@
|
||||
|
||||
/**
|
||||
* @file
|
||||
* @brief Convert a positive integer to string (non-standard function)
|
||||
@ -52,27 +51,27 @@ char *int_to_string(uint16_t value, char *dest, int base)
|
||||
static void test()
|
||||
{
|
||||
const int MAX_SIZE = 100;
|
||||
for (int i = 1; i <= 100; ++i)
|
||||
{
|
||||
char *str1 = (char *)calloc(sizeof(char), MAX_SIZE);
|
||||
char *str2 = (char *)calloc(sizeof(char), MAX_SIZE);
|
||||
|
||||
for (int i = 1; i <= 100; ++i) /* test 100 random numbers */
|
||||
{
|
||||
/* Generate value from 0 to 100 */
|
||||
int value = rand() % 100;
|
||||
|
||||
// assert(strcmp(itoa(value, str1, 2), int_to_string(value, str2, 2)) ==
|
||||
// 0);
|
||||
snprintf(str1, MAX_SIZE, "%o", value);
|
||||
snprintf(str1, MAX_SIZE, "%o", value); //* standard C - to octal */
|
||||
assert(strcmp(str1, int_to_string(value, str2, 8)) == 0);
|
||||
snprintf(str1, MAX_SIZE, "%d", value);
|
||||
snprintf(str1, MAX_SIZE, "%d", value); /* standard C - to decimal */
|
||||
assert(strcmp(str1, int_to_string(value, str2, 10)) == 0);
|
||||
snprintf(str1, MAX_SIZE, "%x", value);
|
||||
snprintf(str1, MAX_SIZE, "%x", value); /* standard C - to hexadecimal */
|
||||
assert(strcmp(str1, int_to_string(value, str2, 16)) == 0);
|
||||
}
|
||||
|
||||
free(str1);
|
||||
free(str2);
|
||||
}
|
||||
}
|
||||
|
||||
/** Driver Code */
|
||||
int main()
|
||||
|
Loading…
Reference in New Issue
Block a user