#include <stdio.h>
#include <stdlib.h>
#include "hw2.h"
/* print_number
 * given a number, print the English version of it. 
 * inputs:
 *   int number - integer between 0 and 99
 * output:
 *   prints out, but does not return, the English of the number
 */
int print_number(int number)
{
	printf("print_number not yet implemented\n");
}

/* print_hex
 * given a decimal number, print the corresponding hexadecimal number
 * inputs:
 *   unsigned int number - a decimal number
 * output:
 *   prints out, but does not return, the hexacimal number
 */
void print_hex(unsigned int number)
{
	printf("print_hex not yet implemented\n");
}

/* print_asterisk_word
 * given a letter, print the corresponding upper-case word in sterisks
 * inputs:
 *   char[] - a character array
 *   unsigned int length - the number of letters in the character array
 * output:
 *   prints out, but does not return, the word in the array
 */
void print_asterisk_word(char word[], unsigned int length)
{
	
}


/* You need to fill in the rest of the skeleton. Look at the .h file
 * for what functions are missing.
 */

