summaryrefslogtreecommitdiff
path: root/userspace/checker.c
diff options
context:
space:
mode:
Diffstat (limited to 'userspace/checker.c')
-rw-r--r--userspace/checker.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/userspace/checker.c b/userspace/checker.c
index e5352f6..ac0bcc9 100644
--- a/userspace/checker.c
+++ b/userspace/checker.c
@@ -9,6 +9,7 @@ int ch; /* Each character read. */
int checksum = 0; /* The checksum mod 2^16. */
int count=0;
+printf("this will calc a simple checksum of the enered text\nPress Left Control + D to signify end of file \n",checksum,count);
while ((ch = getc(fp)) != EOF) {
checksum = (checksum >> 1) + ((checksum & 1) << 15);
checksum +=(int) ch;