changeset 15:525eab23e68a

I no longer need to bug Jeff
author Jonathan Pevarnek <pevarnj@gmail.com>
date Wed, 09 Mar 2011 18:36:22 -0500
parents 94ed54424389
children 43275cae082f
files src/init.c src/std.c
diffstat 2 files changed, 1 insertions(+), 17 deletions(-) [+]
line wrap: on
line diff
--- a/src/init.c	Wed Mar 09 18:24:04 2011 -0500
+++ b/src/init.c	Wed Mar 09 18:36:22 2011 -0500
@@ -20,22 +20,6 @@
 
 void start(u64 __memsize)
 {
-	/*
-	int foo;
-	char bar[20];
-	char string[20] = "This is a test";
-	dumpBuffer(string, 10);
-	sPrint("Please enter an operation: ");
-	foo = getline(string, 10);
-	itoa(foo, bar);
-	sPrint(bar);
-	sPrint("\n");
-	dumpBuffer(string, 10);
-	sPrint("Please enter a second operation: ");
-	sGet(string, 4);
-	dumpBuffer(string, 10);
-	*/
-
 	struct Stack theStack;
 	struct Stack *stack = &theStack;
 	initStack(stack);
--- a/src/std.c	Wed Mar 09 18:24:04 2011 -0500
+++ b/src/std.c	Wed Mar 09 18:36:22 2011 -0500
@@ -100,7 +100,7 @@
 	return -1;
 }
 
-char* sGet(char *a, unsigned int n) //TODO bug Jeff about getline
+char* sGet(char *a, unsigned int n)
 {
 	int length = getline(a, n);
 	a[(length < n)?length:n - 1] = '\0';