mirror of
https://github.com/theoludwig/libcproject.git
synced 2024-11-09 14:51:30 +01:00
29 lines
714 B
C
29 lines
714 B
C
#ifndef __CONVERT__
|
|
#define __CONVERT__
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "character.h"
|
|
#include "mathematics.h"
|
|
#include "stdbool.h"
|
|
#include "string.h"
|
|
|
|
char* convert_character_to_string(const char character);
|
|
|
|
char convert_character_to_digit(const char character);
|
|
|
|
char convert_digit_to_character(const char digit);
|
|
|
|
long long convert_string_to_number(const char* string);
|
|
|
|
char* convert_number_to_string(const long long integer);
|
|
|
|
char* convert_number_from_base_10_to_base(unsigned long long number, unsigned int base);
|
|
|
|
int convert_number_from_base_to_base_10(char* number, unsigned int base);
|
|
|
|
char* convert_number_from_base_to_another(char* number, int base_from, int base_target);
|
|
|
|
#endif
|