Working on exercise 3-5 but I'm creating some libraries

This commit is contained in:
kdeng00
2020-10-25 22:51:28 -04:00
parent 32a77a1e93
commit 72906bac35
8 changed files with 269 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
#include <stdio.h>
#define BUFFER_LIMIT 1024
char hex_value[BUFFER_LIMIT];
char *HexOctalConv_number_converted_to_hex(char *value);
int HexOctalConv_hex_part_to_number(char hex_part);
long HexOctalConv_rudy_pow(long value, int power);
int HexOctalConv_size_of_string(char *value);
char HexOctalConv_convert_hex_part(int value);
void HexOctalConv_reverse_order(char *value);