#include <stdlib.h>
#include <stdio.h>
#include "warmup2.h"

/* print_letter
 * input: uint number - the position in the alphabet of the letter to print
 * output: character that was printed to the screen.
 * summary: Given a number, print the corresponding capital letter 
 * of the alphabet. The number can be anything from 0 to 25. 0 prints 
 * out 'A', 1 prints out 'B', 2 prints out 'C', etc. It also returns 
 * the character.
 */
char print_letter(unsigned int number)
{ 
	return 'a';
}

/* print_asterisk_letter
 * input: char letter - the letter to print out
 * output: nothing returned, just printed to the screen.
 * Given a character, print the corresponding upper-case letter of the 
 * alphabet using asterisks. You only need to support the ones specified
 * in the assignment description, not all letters.
 */
void print_asterisk_letter(char letter)
{ 
}

// you need to add two more functions here.
