From e68f702734b06deaa7815cddb674c16fee491000 Mon Sep 17 00:00:00 2001 From: Curtis F Kaylor Date: Sat, 3 Feb 2018 12:43:05 -0500 Subject: [PATCH] Added new function definitions to stdiox.h02 --- include/stdiox.h02 | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/include/stdiox.h02 b/include/stdiox.h02 index 205e15e..ce73fd4 100644 --- a/include/stdiox.h02 +++ b/include/stdiox.h02 @@ -6,8 +6,18 @@ * Args: b - Number to print */ void putdec(); +/* Print Byte as Left Justified Decimal * + * Args: b - Number to print */ +void putdel(); + +/* Print Byte as Right Justified Decimal * + * Args: b - Number to print */ +void putder(); + +/* Print a Space Character */ +void putspc(); + /* Print Formatted Byte to Screen * * Args: b - byte to format * * &s - formatting string */ void printf(); - \ No newline at end of file