diff options
Diffstat (limited to 'csci4061/091420_breakout/address.c')
-rw-r--r-- | csci4061/091420_breakout/address.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/csci4061/091420_breakout/address.c b/csci4061/091420_breakout/address.c deleted file mode 100644 index 3f36f70..0000000 --- a/csci4061/091420_breakout/address.c +++ /dev/null @@ -1,15 +0,0 @@ -#include "include/main.h" -#include "include/address.h" - -/* - * Write getAddress function - * void getAddress(char * address); - * Prints a prompt "Enter your address: " to get an address, - * Reads in the user's address - */ - -void getAddress(char * address) { - printf("Enter your address: "); - fgets(address, maxLen, stdin); - fflush(stdin); -}
\ No newline at end of file |